<@U0B9ZL4N4> Getting back to your example. There’s...
# coroutines
e
@suresh Getting back to your example. There’s no reason to mark
markRequest
with
suspend
modifier. It will not magically become suspending if it still uses blocking APIs. It is still a blocking function. You should remove
suspend
modifier from it to make it clear.