Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 3981fee9 authored by LETORT Sebastien's avatar LETORT Sebastien
Browse files

Update __init__.py

typo -> status was not included in log message.
parent 0c75dbbb
No related branches found
No related tags found
No related merge requests found
...@@ -69,7 +69,7 @@ class App: ...@@ -69,7 +69,7 @@ class App:
results = r.json() results = r.json()
status = results['status'] status = results['status']
if status in ['created', 'waiting', 'running', 'in progress']: if status in ['created', 'waiting', 'running', 'in progress']:
log.info("wait for job %s in status", jobid, status) log.info("wait for job %s in status %s", jobid, status)
time.sleep(2) time.sleep(2)
else: else:
break break
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment