diff options
author | mathieui <mathieui@mathieui.net> | 2014-05-27 22:34:29 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-05-27 22:34:29 +0200 |
commit | 7049fe7c2157f2974c526927a683bcd4b4317d80 (patch) | |
tree | 2cb3fba641f58fc5a8dc972982865cbe04b88cd0 | |
parent | 35e46c499d77f2a48a3f33cb7322bc97c08abf11 (diff) | |
download | poezio-7049fe7c2157f2974c526927a683bcd4b4317d80.tar.gz poezio-7049fe7c2157f2974c526927a683bcd4b4317d80.tar.bz2 poezio-7049fe7c2157f2974c526927a683bcd4b4317d80.tar.xz poezio-7049fe7c2157f2974c526927a683bcd4b4317d80.zip |
Do not exit from SIGPIPE as it is creating more problems than it solves
-rw-r--r-- | src/poezio.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/poezio.py b/src/poezio.py index 0c1db593..1baf10eb 100644 --- a/src/poezio.py +++ b/src/poezio.py @@ -53,7 +53,6 @@ def main(): signal.signal(signal.SIGUSR1, cocore.sigusr_handler) # reload the config signal.signal(signal.SIGHUP, cocore.exit_from_signal) signal.signal(signal.SIGTERM, cocore.exit_from_signal) - signal.signal(signal.SIGPIPE, cocore.exit_from_signal) if options.debug: cocore.debug = True cocore.start() |