Hi, I’m facing something I don’t understand: I’m...
# ktor
a
Hi, I’m facing something I don’t understand: I’m executing two coroutines creating a scope for each one with same dispatcher but different job. The first I fire is executed but the second it is not. Am I doing something wrong with dispatchers? Is the dispatcher blocking the second because the first is executing at the same time? Thanks!
a
Can you share a code snippet?
a
Instead of using Disptachers.IO I change it to use Dispatchers.Default and seems to work now. Can it be posible that coroutine two is cancelled because Dispatchers.IO is full when executing it because logs?