Skip to content

Commit

Permalink
Merge pull request #3009 from oliver-sanders/7.8.x-task-job-mgr-key-e…
Browse files Browse the repository at this point in the history
…rror

task_job_mgr: except KeyError
  • Loading branch information
hjoliver authored Mar 18, 2019
2 parents 5f53379 + 6c3c1e3 commit 3ce729b
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 @@ -509,7 +509,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 3ce729b

Please sign in to comment.