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 b580d2f commit baa4144Copy full SHA for baa4144
ydb/aio/pool.py
@@ -204,7 +204,9 @@ def __init__(self, driver_config):
204
# If discovery is disabled, just add the initial endpoint to the store
205
async def init_connection():
206
ready_connection = Connection(self._driver_config.endpoint, self._driver_config)
207
- await ready_connection.connection_ready(ready_timeout=getattr(self._driver_config, "discovery_request_timeout", 10))
+ await ready_connection.connection_ready(
208
+ ready_timeout=getattr(self._driver_config, "discovery_request_timeout", 10)
209
+ )
210
self._store.add(ready_connection)
211
212
# Create and schedule the task to initialize the connection
0 commit comments