Skip to content
Snippets Groups Projects
Commit d729c17f authored by Danny Auble's avatar Danny Auble
Browse files
parent 23101d24
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,11 @@ documents those changes that are of interest to users and admins.
the code)
-- Added support for OSX build.
* Changes in SLURM 1.1.3
========================
-- Fix bug in scontrol show daemons if NodeName=localhost will work now to
display slurmd as place where it is running.
* Changes in SLURM 1.1.2
========================
-- Fix bug in jobcomp/filetxt plugin to report proper NodeCnt when a job
......
......@@ -706,6 +706,9 @@ _print_daemons (void)
if ((n = slurm_conf_get_nodename(me))) {
d = 1;
xfree(n);
} else if ((n = slurm_conf_get_nodename("localhost"))) {
d = 1;
xfree(n);
}
strcpy(daemon_list, "");
......
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