From e411832c9e509c9e70bbe69a3acfdb231846c0f3 Mon Sep 17 00:00:00 2001 From: Philipp Schmidt <philipp.schmidt@xfel.eu> Date: Mon, 15 Jan 2024 15:46:50 +0100 Subject: [PATCH] Fix initial SLURM state inserted into database from PD to PENDING --- webservice/webservice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webservice/webservice.py b/webservice/webservice.py index 0652255f0..0272e3a13 100644 --- a/webservice/webservice.py +++ b/webservice/webservice.py @@ -373,7 +373,7 @@ async def run_action(job_db, cmd, mode, proposal, run, exec_id) -> str: jobs.append((int(jobid.strip()), exec_id)) with time_db_transaction(job_db, 'Insert jobs'): job_db.executemany( - "INSERT INTO slurm_jobs VALUES (?, ?, 'PD', 0, 0)", + "INSERT INTO slurm_jobs VALUES (?, ?, 'PENDING', 0, 0)", jobs ) -- GitLab