Skip to content

Commit

Permalink
Fixed bug in CRABBackend that led to crash in the monitoring loop in …
Browse files Browse the repository at this point in the history
…case of task error.
  • Loading branch information
Valentina Mancinelli committed Sep 23, 2016
1 parent 119b2e3 commit 93a22aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/CRABTools/CRABBackend.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ def master_updateMonitoringInformation(jobs):
try:
taskstatus = statusresult['status']
if taskstatus in ['FAILED', 'SUBMITFAILED']:
logger.info('Job failed: %s' % dictresult)
logger.info('Job failed: %s' % taskstatus)
j.updateStatus('failed')
except KeyError:
pass
Expand Down

0 comments on commit 93a22aa

Please sign in to comment.