File tree Expand file tree Collapse file tree 3 files changed +61
-45
lines changed Expand file tree Collapse file tree 3 files changed +61
-45
lines changed Original file line number Diff line number Diff line change @@ -586,11 +586,11 @@ async def test_pool_backoff_preserves_existing_connections(self):
586586 await pool .close ()
587587
588588 async def test_pool_backoff_limits_maxConnecting (self ):
589- client = await self .async_rs_or_single_client ()
589+ client = await self .async_rs_or_single_client (maxConnecting = 30 )
590590 _ , baseline_conns = await self ._check_maxConnecting (client )
591591 await client .close ()
592592
593- client = await self .async_rs_or_single_client ()
593+ client = await self .async_rs_or_single_client (maxConnecting = 30 )
594594 _ , backoff_conns = await self ._check_maxConnecting (client , backoff = True )
595595 await client .close ()
596596
Original file line number Diff line number Diff line change @@ -582,11 +582,11 @@ def test_pool_backoff_preserves_existing_connections(self):
582582 pool .close ()
583583
584584 def test_pool_backoff_limits_maxConnecting (self ):
585- client = self .rs_or_single_client ()
585+ client = self .rs_or_single_client (maxConnecting = 30 )
586586 _ , baseline_conns = self ._check_maxConnecting (client )
587587 client .close ()
588588
589- client = self .rs_or_single_client ()
589+ client = self .rs_or_single_client (maxConnecting = 30 )
590590 _ , backoff_conns = self ._check_maxConnecting (client , backoff = True )
591591 client .close ()
592592
You can’t perform that action at this time.
0 commit comments