We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca3fc05 commit c633220Copy full SHA for c633220
dapr/aio/clients/grpc/subscription.py
@@ -51,7 +51,8 @@ async def outgoing_request_iterator():
51
52
async def reconnect_stream(self):
53
await self.close()
54
- DaprHealth.wait_until_ready()
+ loop = asyncio.get_event_loop()
55
+ await loop.run_in_executor(None, DaprHealth.wait_until_ready)
56
print('Attempting to reconnect...')
57
await self.start()
58
0 commit comments