Skip to content

Commit 8060489

Browse files
committed
test_custom_cluster.py: Increase startup timeout
Scylla need more time to start which caused the test to fail. Increasing to 60 seconds was not enough, 120 seems to work.
1 parent 5122080 commit 8060489

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/standard/test_custom_cluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def setup_module():
3030
# wait until all nodes are up
3131
wait_until_not_raised(lambda: TestCluster(contact_points=['127.0.0.1'], port=9046).connect().shutdown(), 1, 20)
3232
wait_until_not_raised(lambda: TestCluster(contact_points=['127.0.0.2'], port=9046).connect().shutdown(), 1, 20)
33-
wait_until_not_raised(lambda: TestCluster(contact_points=['127.0.0.3'], port=9046).connect().shutdown(), 1, 20)
33+
wait_until_not_raised(lambda: TestCluster(contact_points=['127.0.0.3'], port=9046).connect().shutdown(), 1, 120)
3434

3535

3636
def teardown_module():

0 commit comments

Comments
 (0)