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

Add more event logging, no real changes to logic.

parent 86e7be80
No related branches found
No related tags found
No related merge requests found
...@@ -354,7 +354,8 @@ _handle_signal_process_group(int fd, slurmd_job_t *job) ...@@ -354,7 +354,8 @@ _handle_signal_process_group(int fd, slurmd_job_t *job)
debug3(" buf_len = %d", buf_len); debug3(" buf_len = %d", buf_len);
if ((auth_cred = g_slurm_auth_unpack(buf)) == NULL) { if ((auth_cred = g_slurm_auth_unpack(buf)) == NULL) {
error("unpack of the auth_cred unsuccessful") error("g_slurm_auth_unpack: %s",
g_slurm_auth_errstr(g_slurm_auth_errno(NULL)));
rc = EPERM; rc = EPERM;
goto done; goto done;
} }
...@@ -508,7 +509,8 @@ _handle_signal_container(int fd, slurmd_job_t *job) ...@@ -508,7 +509,8 @@ _handle_signal_container(int fd, slurmd_job_t *job)
debug3(" buf_len = %d", buf_len); debug3(" buf_len = %d", buf_len);
if ((auth_cred = g_slurm_auth_unpack(buf)) == NULL) { if ((auth_cred = g_slurm_auth_unpack(buf)) == NULL) {
error("unpack of the auth_cred unsuccessful"); error("g_slurm_auth_unpack: %s",
g_slurm_auth_errstr(g_slurm_auth_errno(NULL)));
rc = -1; rc = -1;
errno = EPERM; errno = EPERM;
goto done; goto done;
......
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