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 c1357b2 commit a04683bCopy full SHA for a04683b
load.py
@@ -62,6 +62,9 @@ def is_running(location):
62
if queued.status_code == 303:
63
# Done!
64
return False
65
+ if not queued.ok:
66
+ print(f"Failed {location}: {q.text}", file=sys.stderr)
67
+ return False
68
j = queued.json()
69
if j["cwltoolStatus"] == "RUNNING":
70
return True
@@ -72,7 +75,7 @@ def is_running(location):
72
75
raise Exception(f"Unhandled queue status: {queued.status_code} {queued.text}")
73
76
74
77
-MAX_CONCURRENT = 2 # Maximum number in queue
78
+MAX_CONCURRENT = 3 # Maximum number in queue
79
SLEEP = 0.5 # wait SLEEP seconds if queue is full
80
81
0 commit comments