fix(deploy): clear stale celery pidfile + configurable listing goto timeout

This commit is contained in:
qananasikq
2026-04-18 01:55:03 +03:00
parent cd929c9278
commit 54c32cb762
2 changed files with 7 additions and 2 deletions

View File

@@ -78,4 +78,8 @@ start_proxy_bridge_if_needed() {
start_proxy_bridge_if_needed "$@"
# Clean stale celery pidfiles so `docker compose restart worker/beat` works.
# `restart` keeps container fs, so a previous PID file blocks new celery start.
rm -f /tmp/celery-*.pid 2>/dev/null || true
exec "$@"