Skip to content
Snippets Groups Projects
Commit 4866ec80 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

BF: fix wait for single jobid string, make info ignore non-conformant lines

parent 38411970
No related branches found
No related tags found
No related merge requests found
......@@ -160,8 +160,9 @@ def info(job_id):
return {}
res = {}
for line in result.splitlines()[1:]:
key, value = line.split(':', 1)
res[key.strip()] = value.strip()
kv = line.split(':', 1)
if len(kv) == 2:
res[kv[0].strip()] = kv[1].strip()
return res
......@@ -208,7 +209,7 @@ def wait(job_ids):
before continuing
"""
start_time = time.time()
for job_id in _flatten_job_ids(job_ids):
for job_id in _flatten_job_ids(job_ids).split(','):
log.debug('Waiting for job {}'.format(job_id))
while len(info(job_id)) > 0:
wait_time = min(max(1, (time.time() - start_time) / 3.), 20)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment