I seem to have an issue with ktor 0.9.3 related to...
# ktor
r
I seem to have an issue with ktor 0.9.3 related to consuming bytes from
call.request.receiveChannel()
-- after ktor has been idle for a while, I am unable to consume the full length of the data.
e
Have you received any exceptions?
r
No
What is the best way to debug whether the consumption of the byte buffer channel is stopped by ktor, or by the consuming library?
Figured it out: a downstream library is cancelling the Rx Flowable, and thus the coroutine reading the ktor
receiveChannel
to be cancelled. So not an issue with ktor at all...
📝 1