Skip to content

Commit f5231ee

Browse files
committed
Decreased timeouts
1 parent a1c0633 commit f5231ee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/test_asyncio/test_scenario/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ async def teardown():
9898
if isinstance(client.command_executor.active_database.client, Redis):
9999
await client.command_executor.active_database.client.connection_pool.disconnect()
100100

101-
await asyncio.sleep(20)
101+
await asyncio.sleep(10)
102102

103103
yield client, listener, endpoint_config
104104
await teardown()

tests/test_scenario/test_active_active.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class TestActiveActive:
4141

4242
def teardown_method(self, method):
4343
# Timeout so the cluster could recover from network failure.
44-
sleep(20)
44+
sleep(10)
4545

4646
@pytest.mark.parametrize(
4747
"r_multi_db",

0 commit comments

Comments
 (0)