Skip to content
Merged
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion snakemake_executor_plugin_slurm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def run_job(self, job: JobExecutorInterface):
raise WorkflowError(
f"SLURM job submission failed. The error message was {e.output}"
)
if err: # any other error message?
if "submission failed" in err: # any other error message indicating failure?
raise WorkflowError(
f"SLURM job submission failed. The error message was {err}"
)
Expand Down
Loading