fix: Don't configure server

This commit is contained in:
oSumAtrIX 2024-02-05 22:52:55 +01:00
parent 81ef4241de
commit 280dbc30f6
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

View File

@ -25,11 +25,7 @@ internal object StartAPICommand : Runnable {
private var port: Int = 8080
override fun run() {
embeddedServer(Netty, port, host, configure = {
connectionGroupSize = 1
workerGroupSize = 1
callGroupSize = 1
}) {
embeddedServer(Netty, port, host) {
configureDependencies()
configureHTTP()
configureSerialization()