Skip to content

Commit

Permalink
extend ipcluster timeout to two minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin committed Jun 22, 2015
1 parent 43afcab commit 82d7fa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dask/distributed/tests/test_distributed.py
Expand Up @@ -29,7 +29,7 @@ def setup_cluster():
break
elif 'CRITICAL | Cluster is already running' in line:
raise RuntimeWarning("Cluster is already running")
elif time.time() - tic > 50:
elif time.time() - tic > 120:
raise RuntimeError("Timeout waiting for cluster to start.")
time.sleep(0.1)

Expand Down

0 comments on commit 82d7fa5

Please sign in to comment.