Skip to content
Snippets Groups Projects
Commit e78802d3 authored by Morris Jette's avatar Morris Jette
Browse files

Merge branch 'slurm-2.3'

parents 7636f0f2 4dd9e697
No related branches found
No related tags found
No related merge requests found
...@@ -192,6 +192,8 @@ documents those changes that are of interest to users and admins. ...@@ -192,6 +192,8 @@ documents those changes that are of interest to users and admins.
Bill Brophy, Bull. Bill Brophy, Bull.
-- Modify Makefiles for support of Debian hardening flags. Patch from -- Modify Makefiles for support of Debian hardening flags. Patch from
Simon Ruderich. Simon Ruderich.
-- CRAY: Fix support for configuration with SlurmdTimeout=0 (never mark
node that is DOWN in ALPS as DOWN in SLURM).
* Changes in SLURM 2.3.4 * Changes in SLURM 2.3.4
======================== ========================
......
...@@ -253,7 +253,7 @@ extern int basil_inventory(void) ...@@ -253,7 +253,7 @@ extern int basil_inventory(void)
node_ptr->down_time = now; node_ptr->down_time = now;
if (IS_NODE_DOWN(node_ptr)) { if (IS_NODE_DOWN(node_ptr)) {
/* node still down */ /* node still down */
} else if (slurmctld_conf.slurmd_timeout && } else if ((slurmctld_conf.slurmd_timeout == 0) ||
((now - node_ptr->down_time) < ((now - node_ptr->down_time) <
slurmctld_conf.slurmd_timeout)) { slurmctld_conf.slurmd_timeout)) {
node_ptr->node_state |= NODE_STATE_NO_RESPOND; node_ptr->node_state |= NODE_STATE_NO_RESPOND;
......
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