Skip to content
Snippets Groups Projects
Commit bd74530a authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #9682: Fix SLURM job status if failed, and avoid requeueing of pipeline...

Task #9682: Fix SLURM job status if failed, and avoid requeueing of pipeline job on node failure because SLURM messes up its administation (mixes old and new job, makes job unfindable by jobname, triggers abort-trigger job anyway)
parent 5ac1b810
No related branches found
No related tags found
No related merge requests found
......@@ -424,9 +424,6 @@ class PipelineControl(OTDBBusListener):
# Enforce the dependencies, instead of creating lingering jobs
"--kill-on-invalid-dep=yes",
# Restart job if a node fails
"--requeue",
# Maximum run time for job (31 days)
"--time=31-0",
......@@ -471,11 +468,11 @@ function runcmd {{
PID=$!
wait $PID # returns the exit status of "wait" if interrupted
wait $PID # returns the exit status of $PID
RESULT=$?
CMDRESULT=$?
trap - SIGTERM SIGINT
return $RESULT
return $CMDRESULT
}}
# print some info
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment