Unverified Commit 6e2bf212 by Christian Brauner Committed by Stéphane Graber

start: dumb down SIGCHLD from WARN() to NOTICE()

parent e839039c
...@@ -319,7 +319,7 @@ static int signal_handler(int fd, uint32_t events, void *data, ...@@ -319,7 +319,7 @@ static int signal_handler(int fd, uint32_t events, void *data,
* by a process different from the container init. * by a process different from the container init.
*/ */
if (siginfo.ssi_pid != *pid) { 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; return init_died ? 1 : 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment