Skip to content

Commit

Permalink
fix: bugfix of jobid of suspended jobs message
Browse files Browse the repository at this point in the history
Fixes issue:
#8
  • Loading branch information
jonca79 authored Mar 15, 2024
1 parent 9193590 commit f94345b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snakemake_executor_plugin_drmaa/__init__.py
Original file line number Diff line number Diff line change
@@ -184,7 +184,7 @@ def handle_suspended(by):
if active_job.job.jobid not in self.suspended_msg:
self.logger.warning(
"Job {} (DRMAA id: {}) was suspended by {}.".format(
active_job.job.jobid, active_job.jobid, by
active_job.job.jobid, active_job.external_jobid, by
)
)
self.suspended_msg.add(active_job.job.jobid)

0 comments on commit f94345b

Please sign in to comment.