-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle client disconnect in server #229
Comments
Looks like the same issue as #211. So I think it's ktor side |
related: #226 |
@whyoleg thank you for your quick response! That is also what we have been trying, but no success yet. Maybe we are doing something stupid since the handler never gets called. We tried with the applicationEngingeEnviroment like this: private val handler = CoroutineExceptionHandler { coroutineContext, throwable ->
println("CALLED")
when (throwable) {
is kotlinx.coroutines.channels.ClosedReceiveChannelException -> Unit
else -> throw throwable
}
}
fun applicationEngine(): NettyApplicationEngine {
val port = config.deployment("port", "80").toInt()
val host = config.deployment("host", "0.0.0.0")
return embeddedServer(
Netty,
applicationEngineEnvironment {
module {
mount()
printRoutes()
}
connector {
this.port = port
this.host = host
}
this.parentCoroutineContext = this.parentCoroutineContext + handler
}) {
}
} We also tried passing a scope with a handler to the |
From what I've checked, looks like it's not possible to add exception handler for websocket session... Need to create an issue on ktor side for this (?). |
will be fixed on ktor side here: https://youtrack.jetbrains.com/issue/KTOR-5016/Channel-was-closed-exception-in-WebSocket-during-normal-use |
We did some digging, for the moment adding a simple Line 36 in a09a2b5
Maybe there is a way to propagate it and notify that the rSocket was closed (since this is very common when dealing with mobile and web clients)? Maybe you can point us in the right direction and we make a PR? |
Change should be a little bigger. We need to make receive result nullable and handle it where it's called. This will affect all transport implementations and not only websocket. Also handling of error error in send should be there: if send is called while receive is in process (as those operations can be performed in parallel). I will try to prepare a quicfix(and new patch release)this weekend, until new transport API will be available. |
Thank you! If there is something we can help with let us know. |
Sorry for the delay. Focus switched on new transport API. I've tried to create a quick fix, but it's really degrade stability and expected behavior of current transport implementation and I need to investigate more time that I expected. At the same time I still think, that this specific issue should be fixed on ktor side. I will try to ensure that it will be fixed in ktor 2.2.0 if ktor team will not do it. |
Each time a client disconnects we get an unhandled error in our server logs. How can we handle them since they are flooding our server logs?
We are using
ktor_version=2.1.0
with WebSockets and the Netty engine. We also tried CIO but the same result.The text was updated successfully, but these errors were encountered: