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

If an Elan system has a node with too few nodes, but the node will be DOWN,

then don't treat as fatal error.
parent 759a88a2
No related branches found
No related tags found
No related merge requests found
...@@ -997,6 +997,8 @@ static void _validate_node_proc_count(void) ...@@ -997,6 +997,8 @@ static void _validate_node_proc_count(void)
if (slurmctld_conf.fast_schedule) if (slurmctld_conf.fast_schedule)
node_size = node_ptr->config_ptr->cpus; node_size = node_ptr->config_ptr->cpus;
else if (node_ptr->cpus < node_ptr->config_ptr->cpus)
continue; /* node too small, will be DOWN */
else if ((node_ptr->node_state & (~NODE_STATE_NO_RESPOND)) else if ((node_ptr->node_state & (~NODE_STATE_NO_RESPOND))
== NODE_STATE_DOWN) == NODE_STATE_DOWN)
continue; continue;
......
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