We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f602d4c commit 64aa0afCopy full SHA for 64aa0af
test/asynchronous/test_pooling.py
@@ -581,6 +581,8 @@ async def test_pool_backoff_limits_maxConnecting(self):
581
assert pool.maxConnecting == 10
582
pool._backoff = 1
583
assert pool.maxConnecting == 1
584
+ pool._backoff = 0
585
+ assert pool.maxConnecting == 10
586
await client.close()
587
588
test/test_pooling.py
@@ -579,6 +579,8 @@ def test_pool_backoff_limits_maxConnecting(self):
579
580
client.close()
0 commit comments