diff options
Diffstat (limited to 'cryptech_muxd')
-rwxr-xr-x | cryptech_muxd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptech_muxd b/cryptech_muxd index 8e57ef8..d28f758 100755 --- a/cryptech_muxd +++ b/cryptech_muxd @@ -437,8 +437,8 @@ def main(): if __name__ == "__main__": try: tornado.ioloop.IOLoop.current().run_sync(main) - except KeyboardInterrupt: - logger.debug("Normal SIGTERM exit") + except (SystemExit, KeyboardInterrupt): + pass except: logger.exception("Unhandled exception") else: |