Skip to content

Commit

Permalink
Merge pull request #3010 from oliver-sanders/task-job-mgr-key-error
Browse files Browse the repository at this point in the history
task_job_mgr: except KeyError
  • Loading branch information
hjoliver authored Mar 17, 2019
2 parents f501a6b + 6c3c1e3 commit 833a32c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cylc/task_job_mgr.py
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ def _manip_task_jobs_callback(
del bad_tasks[(point, name, submit_num)]
itask = tasks[(point, name, submit_num)]
callback(suite, itask, ctx, line)
except (LookupError, ValueError) as exc:
except (LookupError, ValueError, KeyError) as exc:
LOG.warning(
'Unhandled %s output: %s', ctx.cmd_key, line)
LOG.exception(exc)
Expand Down

0 comments on commit 833a32c

Please sign in to comment.