Skip to content
Snippets Groups Projects
Commit fe455ef3 authored by Moe Jette's avatar Moe Jette
Browse files

Add logic for batch step launch (as used by LSF) to be delayed as needed for

   powered down nodes.
parent 60477ab8
No related branches found
No related tags found
No related merge requests found
......@@ -127,7 +127,10 @@ int main(int argc, char *argv[])
if (errno == ESLURM_ERROR_ON_DESC_TO_RECORD_COPY)
msg = "Slurm job queue full, sleeping and retrying.";
else if (errno == EAGAIN) {
else if (errno == ESLURM_NODES_BUSY) {
msg = "Job step creation temporarily disabled, "
"retrying";
} else if (errno == EAGAIN) {
msg = "Slurm temporarily unable to accept job, "
"sleeping and retrying.";
} else
......
......@@ -33,7 +33,6 @@
############################################################################
source ./globals
slow_kill 45984
set test_id "15.17"
set file_in "test$test_id.input"
set exit_code 0
......
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