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

Note recent changes to power save logic. Change sbatch retry message from

  error() to info().
parent 9723b183
No related branches found
No related tags found
No related merge requests found
...@@ -24,6 +24,11 @@ documents those changes that are of interest to users and admins. ...@@ -24,6 +24,11 @@ documents those changes that are of interest to users and admins.
the accounting. the accounting.
-- Clear node's POWER_SAVE flag if configuration changes to one lacking a -- Clear node's POWER_SAVE flag if configuration changes to one lacking a
ResumeProgram. ResumeProgram.
-- Extend a job's time limit as appropriate due to delays powering up idle
nodes.
-- If sbatch is used to launch a job step within an existing allocation (as
used by LSF) and the required node is powered down, print the message
"Job step creation temporarily disabled, retrying", sleep, and retry.
* Changes in SLURM 2.0.0-rc1 * Changes in SLURM 2.0.0-rc1
============================== ==============================
......
...@@ -142,6 +142,8 @@ int main(int argc, char *argv[]) ...@@ -142,6 +142,8 @@ int main(int argc, char *argv[])
if (retries) if (retries)
debug(msg); debug(msg);
else if (errno == ESLURM_NODES_BUSY)
info(msg); /* Not an error, powering up nodes */
else else
error(msg); error(msg);
sleep (++retries); sleep (++retries);
......
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