Why does Tokio single threaded flavor not provide any concurrency?
When I am running the below code with flavor = “current_thread”, I am seeing output only from first task and not the other. My understanding was that even in a single threaded execution, async code can be run concurrently. What am I missing?