Browse Source

allow supervisord to start if pid file is stale

Nick Sweeting 1 year ago
parent
commit
a13f71a86c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      archivebox/queues/supervisor_util.py

+ 1 - 1
archivebox/queues/supervisor_util.py

@@ -91,7 +91,7 @@ def stop_existing_supervisord_process():
         proc.terminate()
         proc.terminate()
         proc.wait()
         proc.wait()
     except Exception:
     except Exception:
-        raise
+        pass
     try:
     try:
         PID_FILE.unlink()
         PID_FILE.unlink()
     except FileNotFoundError:
     except FileNotFoundError: