When the loop is already running, the following line will raise the RuntimeError: This event loop is already running:
|
return loop.run_until_complete(awaitable) |
This happens when the following line returns an already running loop:
|
loop = asyncio.get_running_loop() |
When the loop is already running, the following line will raise the
RuntimeError: This event loop is already running:python-sdk/dapr/clients/http/dapr_invocation_http_client.py
Line 161 in 033acbc
This happens when the following line returns an already running loop:
python-sdk/dapr/clients/http/dapr_invocation_http_client.py
Line 147 in 033acbc