Skip to content

Commit

Permalink
Merge pull request #1445 from brauner/2017-02-26/dumb_down_invalid_si…
Browse files Browse the repository at this point in the history
…gchld_warning

start: dumb down SIGCHLD from WARN() to NOTICE()
  • Loading branch information
stgraber committed Feb 26, 2017
2 parents 8d7638c + af4c0f0 commit e3e5416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lxc/start.c
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ static int signal_handler(int fd, uint32_t events, void *data,
* by a process different from the container init.
*/
if (siginfo.ssi_pid != *pid) {
WARN("Invalid pid for SIGCHLD. Received pid %d, expected pid %d.", siginfo.ssi_pid, *pid);
NOTICE("Received SIGCHLD from pid %d instead of container init %d.", siginfo.ssi_pid, *pid);
return init_died ? 1 : 0;
}

Expand Down

0 comments on commit e3e5416

Please sign in to comment.