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 d72b22e commit 17c3302Copy full SHA for 17c3302
dapr/aio/clients/grpc/subscription.py
@@ -52,7 +52,7 @@ async def outgoing_request_iterator():
52
53
async def reconnect_stream(self):
54
await self.close()
55
- await DaprHealth.wait_until_ready()
+ await DaprHealth.wait_for_sidecar()
56
print('Attempting to reconnect...')
57
await self.start()
58
dapr/aio/clients/health.py
@@ -24,15 +24,6 @@
24
25
26
class DaprHealth:
27
- @staticmethod
28
- async def wait_until_ready():
29
- warn(
30
- 'This method is deprecated. Use DaprHealth.wait_for_sidecar instead.',
31
- DeprecationWarning,
32
- stacklevel=2,
33
- )
34
- await DaprHealth.wait_for_sidecar()
35
-
36
@staticmethod
37
async def wait_for_sidecar():
38
health_url = f'{get_api_url()}/healthz/outbound'
0 commit comments