<@U0AK89KT6> It does inherit parent job, so your `...
# coroutines
e
@jkbbwr It does inherit parent job, so your
withContext(recvThread)
receives cancellation, however inside you have
pull.recvStr()
which is a blocking (non-cancellable) invocation. You need to deliver your cancellation signal to
recvStr()
. How do you cancel blocking receive in ZMQ?