Skip to content
Snippets Groups Projects
Commit c5535b20 authored by Danny Auble's avatar Danny Auble
Browse files

Always call the slurm_select_fini on ending the slurmctld to clean up

any underlying infrastructure.
parent a1a5e4b4
No related branches found
No related tags found
No related merge requests found
...@@ -678,6 +678,12 @@ int main(int argc, char *argv[]) ...@@ -678,6 +678,12 @@ int main(int argc, char *argv[])
break; break;
sleep(1); sleep(1);
} }
/* Always call slurm_select_fini() on some systems like
BlueGene we need to make sure other processes are ended
or we could get a random core from within it's
underlying infrastructure.
*/
slurm_select_fini();
#endif #endif
xfree(slurmctld_cluster_name); xfree(slurmctld_cluster_name);
......
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