Hi guys, in the KTOR documentation there is no inf...
# ktor
c
Hi guys, in the KTOR documentation there is no info about coroutine scoping, in essence what's the scope the call is run into, what if I launch a coroutine within a call and then the whole call is timedout? will the parent cancel it? @cy I ask because I am afraid my coroutines will leak if I don't pay attention to this, even though I always try to fork everything on the context of the parent call, not global! @e5l
d
Yes, cancellation works.
d
The default coroutine scope provided to your interceptors is scoped to the call