orchestration: change asyncio.wait() to asyncio.gather()
This change is mostly about the default semantics of asyncio.wait(). It doesn't forward any exceptions that are raised by any of the coroutines it waits for. This effectively causes exceptions to be swallowed. In contrast, asyncio.gather() forwards exceptions to its calling coroutine.
Showing
Please register or sign in to comment