Skip to content

Commit d45dc73

Browse files
committed
fix: blocking auth server
1 parent a36640f commit d45dc73

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

controller-runtime/src/main/kotlin/app/simplecloud/controller/runtime/ControllerRuntime.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ class ControllerRuntime(
7070
CoroutineScope(Dispatchers.Default).launch {
7171
try {
7272
authServer.start()
73-
logger.info("Auth server stopped.")
7473
} catch (e: Exception) {
7574
logger.error("Error in gRPC server", e)
7675
throw e

controller-runtime/src/main/kotlin/app/simplecloud/controller/runtime/oauth/OAuthServer.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,6 @@ class OAuthServer(private val args: ControllerStartCommand, database: Database)
121121
}
122122
}
123123
}
124-
}.start(wait = true)
124+
}.start(wait = false)
125125
}
126126
}

0 commit comments

Comments
 (0)