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__(
61
61
self .topic_client = topic .TopicClientAsyncIO (self , config .topic_client_settings )
62
62
63
63
async def stop (self , timeout = 10 ):
64
- await self .table_client ._pool .stop (timeout )
64
+ await self .table_client ._pool .stop (timeout = timeout )
65
65
await super ().stop (timeout = timeout )
Original file line number Diff line number Diff line change @@ -283,6 +283,6 @@ def __init__(
283
283
self .table_client = table .TableClient (self , driver_config .table_client_settings )
284
284
self .topic_client = topic .TopicClient (self , driver_config .topic_client_settings )
285
285
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