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):
586
586
await pool .close ()
587
587
588
588
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 )
590
590
_ , baseline_conns = await self ._check_maxConnecting (client )
591
591
await client .close ()
592
592
593
- client = await self .async_rs_or_single_client ()
593
+ client = await self .async_rs_or_single_client (maxConnecting = 30 )
594
594
_ , backoff_conns = await self ._check_maxConnecting (client , backoff = True )
595
595
await client .close ()
596
596
Original file line number Diff line number Diff line change @@ -582,11 +582,11 @@ def test_pool_backoff_preserves_existing_connections(self):
582
582
pool .close ()
583
583
584
584
def test_pool_backoff_limits_maxConnecting (self ):
585
- client = self .rs_or_single_client ()
585
+ client = self .rs_or_single_client (maxConnecting = 30 )
586
586
_ , baseline_conns = self ._check_maxConnecting (client )
587
587
client .close ()
588
588
589
- client = self .rs_or_single_client ()
589
+ client = self .rs_or_single_client (maxConnecting = 30 )
590
590
_ , backoff_conns = self ._check_maxConnecting (client , backoff = True )
591
591
client .close ()
592
592
You can’t perform that action at this time.
0 commit comments