We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3023ba2 commit a41d22aCopy full SHA for a41d22a
snakemake_executor_plugin_slurm/__init__.py
@@ -203,6 +203,10 @@ async def check_active_jobs(
203
# We use this sacct syntax for argument 'starttime' to keep it compatible
204
# with slurm < 20.11
205
sacct_starttime = f"{datetime.now() - timedelta(days=2):%Y-%m-%dT%H:00}"
206
+ # previously we had
207
+ # f"--starttime now-2days --endtime now --name {self.run_uuid}"
208
+ # in line 218 - once v20.11 is definitively not in use any more,
209
+ # the more readable version ought to be re-adapted
210
211
# this code is inspired by the snakemake profile:
212
# https://github.com/Snakemake-Profiles/slurm
0 commit comments