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

Change some log message for jobid/stepid to use %u format instead of %d,

 which shows some negative values.
parent a7ac2b94
No related branches found
No related tags found
No related merge requests found
...@@ -213,7 +213,7 @@ _get_job_info(srun_step_t *s) ...@@ -213,7 +213,7 @@ _get_job_info(srun_step_t *s)
} }
if (job == NULL) { if (job == NULL) {
error ("Unable to find job %d", s->jobid); error ("Unable to find job %u", s->jobid);
goto done; goto done;
} }
...@@ -267,12 +267,12 @@ _get_step_info(srun_step_t *s) ...@@ -267,12 +267,12 @@ _get_step_info(srun_step_t *s)
xassert(s->stepid != NO_VAL); xassert(s->stepid != NO_VAL);
if (slurm_get_job_steps((time_t) 0, s->jobid, s->stepid, &resp, 1) < 0) { if (slurm_get_job_steps((time_t) 0, s->jobid, s->stepid, &resp, 1) < 0) {
error("Unable to get step information for %d.%d: %m", error("Unable to get step information for %u.%u: %m",
s->jobid, s->stepid); s->jobid, s->stepid);
goto done; goto done;
} }
if (resp->job_step_count == 0) { if (resp->job_step_count == 0) {
error("No nodes in %d.%d", s->jobid, s->stepid); error("No nodes in %u.%u", s->jobid, s->stepid);
s->ntasks = 0; s->ntasks = 0;
goto done; goto done;
} }
...@@ -316,7 +316,7 @@ _attach_to_job(job_t *job) ...@@ -316,7 +316,7 @@ _attach_to_job(job_t *job)
req = xmalloc(job->nhosts * sizeof(*req)); req = xmalloc(job->nhosts * sizeof(*req));
msg = xmalloc(job->nhosts * sizeof(*msg)); msg = xmalloc(job->nhosts * sizeof(*msg));
debug("Going to attach to job %d.%d", job->jobid, job->stepid); debug("Going to attach to job %u.%u", job->jobid, job->stepid);
for (i = 0; i < job->nhosts; i++) { for (i = 0; i < job->nhosts; i++) {
reattach_tasks_request_msg_t *r = &req[i]; reattach_tasks_request_msg_t *r = &req[i];
......
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