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

Don't treat node names in the topology.conf file as a fatal error.

It may be easiest to generate such a file
parent 81699111
No related branches found
No related tags found
No related merge requests found
...@@ -162,7 +162,7 @@ static void _validate_switches(void) ...@@ -162,7 +162,7 @@ static void _validate_switches(void)
if (ptr->nodes) { if (ptr->nodes) {
switch_ptr->level = 0; /* leaf switch */ switch_ptr->level = 0; /* leaf switch */
switch_ptr->nodes = xstrdup(ptr->nodes); switch_ptr->nodes = xstrdup(ptr->nodes);
if (node_name2bitmap(ptr->nodes, false, if (node_name2bitmap(ptr->nodes, true,
&switch_ptr->node_bitmap)) { &switch_ptr->node_bitmap)) {
fatal("Invalid node name (%s) in switch " fatal("Invalid node name (%s) in switch "
"config (%s)", "config (%s)",
......
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