Skip to content

Commit 6478724

Browse files
author
John Major
committed
0.0.31
1 parent 87799fb commit 6478724

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "snakemake-executor-plugin-pcluster-slurm"
3-
version = "0.0.30"
3+
version = "0.0.31"
44
description = "A Snakemake executor plugin for submitting jobs to an AWS Parallel Cluster (pcluster) SLURM cluster."
55
authors = [
66
"John Major <john@daylilyinformatics.com>",

snakemake_executor_plugin_pcluster_slurm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ def cancel_jobs(self, active_jobs: List[SubmittedJobInfo]):
330330
# about 30 sec, but can be longer in extreme cases.
331331
# Under 'normal' circumstances, 'scancel' is executed in
332332
# virtually no time.
333-
scancel_command = f"scancel {jobids} --clusters=all"
333+
scancel_command = f"scancel {jobids} "
334334

335335
subprocess.check_output(
336336
scancel_command,

0 commit comments

Comments
 (0)