Skip to content

Commit

Permalink
Don't return early from _finish_jobs if we're supposed to keep going
Browse files Browse the repository at this point in the history
  • Loading branch information
cjops committed Dec 20, 2021
1 parent 1349254 commit 54e97dd
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 54e97dd

Please sign in to comment.