Skip to content

Commit

Permalink
Increase timeout in manager shutdown test
Browse files Browse the repository at this point in the history
Now that there is reconnect options & backoff, this test can sometimes
take more than 60 seconds
  • Loading branch information
bennybp committed May 22, 2024
1 parent 304814e commit ef6ead4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qcfractalcompute/qcfractalcompute/test_compute_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def test_manager_missed_heartbeats_shutdown(snowflake: QCATestingSnowflake):

snowflake.stop_api()

for i in range(60):
for i in range(90):
time.sleep(1)

if not compute_thread.is_alive():
Expand Down

0 comments on commit ef6ead4

Please sign in to comment.