Skip to content
Snippets Groups Projects
Commit 027f4ab7 authored by Don Lipari's avatar Don Lipari
Browse files

-- Patch from Matthieu Hautreux to improve error message in slurmd/req.c

parent 5f705117
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,7 @@ documents those changes that are of interest to users and admins.
-- replaced local gtk m4 test with AM_PATH_GTK_2_0
-- changed AC_CHECK_LIB to AC_SEARCH_LIBS to avoid extra libs in
compile lines.
-- Patch from Matthieu Hautreux to improve error message in slurmd/req.c
* Changes in SLURM 2.1.0-pre7
=============================
......
......@@ -718,8 +718,10 @@ _check_job_credential(launch_tasks_request_msg_t *req, uid_t uid,
}
if (!hostset_within(hset, conf->node_name)) {
error("job credential invalid for this host [%u.%u %ld %s]",
arg.jobid, arg.stepid, (long) arg.uid, arg.hostlist);
error("Invalid job %u.%u credential for user %u: "
"host %s not in hostset %s",
arg.jobid, arg.stepid, arg.uid,
conf->node_name, arg.hostlist);
goto fail;
}
......
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