Skip to content
Snippets Groups Projects
Commit 067b7dc7 authored by Moe Jette's avatar Moe Jette
Browse files
parent 35994e2d
No related branches found
No related tags found
No related merge requests found
......@@ -180,6 +180,9 @@ documents those changes that are of interest to users and admins.
the code)
-- Added support for OSX build.
* Changes in SLURM 1.1.23
=========================
* Changes in SLURM 1.1.22
=========================
- Add squeue option to print a job step's task count (-o %A).
......@@ -188,7 +191,7 @@ documents those changes that are of interest to users and admins.
- In sched/wiki2, fix fatal race condition on slurmctld startup.
- Fix for displaying launching verbose messages for each node under the
tree instead of just the head one.
- Fix job suspend bug, job accounting plugin with SEGV when given a
- Fix job suspend bug, job accounting plugin would SEGV when given a
bad job ID.
* Changes in SLURM 1.1.21
......
......@@ -189,11 +189,12 @@ static char * _dump_job(struct job_record *job_ptr, int state_info)
&& (job_ptr->details)
&& (job_ptr->details->req_nodes)
&& (job_ptr->details->req_nodes[0])) {
char *hosts = bitmap2wiki_node_name(
job_ptr->details->req_node_bitmap);
snprintf(tmp, sizeof(tmp),
"HOSTLIST=%s;",
bitmap2wiki_node_name(
job_ptr->details->req_node_bitmap));
"HOSTLIST=%s;", hosts);
xstrcat(buf, tmp);
xfree(hosts);
}
if (job_ptr->job_state == JOB_FAILED) {
......
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