File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -61,5 +61,5 @@ def __init__(
6161 self .topic_client = topic .TopicClientAsyncIO (self , config .topic_client_settings )
6262
6363 async def stop (self , timeout = 10 ):
64- await self .table_client ._pool .stop (timeout )
64+ await self .table_client ._pool .stop (timeout = timeout )
6565 await super ().stop (timeout = timeout )
Original file line number Diff line number Diff line change @@ -283,6 +283,6 @@ def __init__(
283283 self .table_client = table .TableClient (self , driver_config .table_client_settings )
284284 self .topic_client = topic .TopicClient (self , driver_config .topic_client_settings )
285285
286- def stop (self ):
287- self .table_client ._pool .stop ()
288- super ().stop ()
286+ def stop (self , timeout = 10 ):
287+ self .table_client ._pool .stop (timeout = timeout )
288+ super ().stop (timeout = timeout )
You can’t perform that action at this time.
0 commit comments