Skip to content

Commit

Permalink
fix: Don't handle the same job output error twice when --keep-going i…
Browse files Browse the repository at this point in the history
…s set
  • Loading branch information
cjops committed Dec 20, 2021
1 parent 1349254 commit 7679d03
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions snakemake/scheduler.py
Expand Up @@ -532,6 +532,8 @@ def _finish_jobs(self):
# we do the same as in case of errors during execution
print_exception(e, self.workflow.linemaps)
self._handle_error(job)
if self.keepgoing:
continue
return

if self.update_resources:
Expand Down

0 comments on commit 7679d03

Please sign in to comment.