Skip to content

Commit

Permalink
Update table.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vgvoleg authored Oct 21, 2024
1 parent b19abab commit c531277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ydb/aio/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def __init__(self, driver, table_client_settings=None):
self._pool: Optional[SessionPool] = None

def __del__(self):
asyncio.get_running_loop.call_soon(self._stop_pool_if_needed)
asyncio.get_running_loop().call_soon(self._stop_pool_if_needed)

def session(self):
return Session(self._driver, self._table_client_settings)
Expand Down

0 comments on commit c531277

Please sign in to comment.