Skip to content
Snippets Groups Projects
Commit a40aecfe authored by Mark Grondona's avatar Mark Grondona
Browse files

o do not print error message when slurmd session manager killed by

   SIGKILL (This means job has been terminated)
parent c8992900
No related branches found
No related tags found
No related merge requests found
...@@ -767,8 +767,10 @@ _wait_for_session(slurmd_job_t *job) ...@@ -767,8 +767,10 @@ _wait_for_session(slurmd_job_t *job)
done: done:
if (WIFSIGNALED(status)) { if (WIFSIGNALED(status)) {
error ("slurmd session manager killed by signal %d", int signo = WTERMSIG(status);
WTERMSIG(status));
if (signo != 9)
error ("slurmd session manager killed by signal %d", signo);
/* /*
* Make sure all processes in session are dead * Make sure all processes in session are dead
......
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