Await seems to be blocking

Yes, .await waits until the thing it is used on completes. If you want to run multiple things, you should spawn a new task or use some other tool for concurrency.

1 Like