From 085a9fed377ff3d8dddc67ea1ec5279d4e968ad5 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Sat, 3 Jun 2017 10:07:03 -0400 Subject: [PATCH] Do not error if debug or usr1 handling is impossible Windows is a limited platform, let it run regardless. --- confluent_server/confluent/main.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/confluent_server/confluent/main.py b/confluent_server/confluent/main.py index 79944897..e84a8233 100644 --- a/confluent_server/confluent/main.py +++ b/confluent_server/confluent/main.py @@ -204,7 +204,10 @@ def setlimits(): def run(): setlimits() - signal.signal(signal.SIGUSR1, dumptrace) + try: + signal.signal(signal.SIGUSR1, dumptrace) + except AttributeError: + pass # silly windows if havefcntl: _checkpidfile() conf.init_config() @@ -231,9 +234,12 @@ def run(): os.remove('/var/run/confluent/dbg.sock') except OSError: pass # We are not expecting the file to exist - dbgsock = eventlet.listen("/var/run/confluent/dbg.sock", - family=socket.AF_UNIX) - eventlet.spawn_n(backdoor.backdoor_server, dbgsock) + try: + dbgsock = eventlet.listen("/var/run/confluent/dbg.sock", + family=socket.AF_UNIX) + eventlet.spawn_n(backdoor.backdoor_server, dbgsock) + except AttributeError: + pass # Windows... os.umask(oumask) http_bind_host, http_bind_port = _get_connector_config('http') sock_bind_host, sock_bind_port = _get_connector_config('socket')