From 1456ec32d09a4aecbb72a5129399bc3c54e38a75 Mon Sep 17 00:00:00 2001 From: naglepuff Date: Tue, 10 Feb 2026 11:30:33 -0500 Subject: [PATCH] Limit heroku concurrency to 1 --- Procfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Procfile b/Procfile index 711b76a5..af48d22b 100644 --- a/Procfile +++ b/Procfile @@ -2,4 +2,4 @@ release: python ./manage.py migrate # Set `graceful_timeout` to shorter than the 30 second limit imposed by Heroku restarts # Set `timeout` to shorter than the 30 second limit imposed by the Heroku router web: gunicorn --bind 0.0.0.0:$PORT --graceful-timeout 25 --timeout 15 bats_ai.wsgi -worker: REMAP_SIGTERM=SIGQUIT celery --app bats_ai.celery worker --loglevel INFO --without-heartbeat +worker: REMAP_SIGTERM=SIGQUIT celery --app bats_ai.celery worker --loglevel INFO --without-heartbeat --concurrency 1