]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
start: dumb down SIGCHLD from WARN() to NOTICE() 1445/head
authorChristian Brauner <christian.brauner@ubuntu.com>
Sun, 26 Feb 2017 11:51:30 +0000 (12:51 +0100)
committerChristian Brauner <christian.brauner@ubuntu.com>
Sun, 26 Feb 2017 11:51:30 +0000 (12:51 +0100)
Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
src/lxc/start.c

index ab5f5ade404ad5b416eb9ebfa3849296091b59fd..e586881a9132069f638f77baf80f0ef9fb05151b 100644 (file)
@@ -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;
        }