1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-08-24 23:16:19 +02:00

allow supervisord to start if pid file is stale

This commit is contained in:
Nick Sweeting
2024-09-10 03:10:10 -07:00
parent cecca8d169
commit a13f71a86c

View File

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