Fix: enable-consumer for all domains missing dir
[lttng-tools.git] / src / bin / lttng-consumerd / lttng-consumerd.c
index 1cc11d2d5898a35d2278826618a20042eb818a25..4d02c842798f65c1024b9326a248493ea60204af 100644 (file)
@@ -79,6 +79,14 @@ static void sighandler(int sig)
                return;
        }
 
+       /*
+        * Ignore SIGPIPE because it should not stop the consumer whenever a
+        * SIGPIPE is catched through a FD operation.
+        */
+       if (sig == SIGPIPE) {
+               return;
+       }
+
        lttng_consumer_should_exit(ctx);
 }
 
This page took 0.023283 seconds and 4 git commands to generate.