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
No known key found for this signature in database

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: