Skip to content

Commit 830b444

Browse files
authored
Fixed procfile having wrong order of arguments (#4521)
Celery worker errors out due to the worker being before the app arg
1 parent b34608c commit 830b444

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Procfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
release: python manage.py migrate --noinput && python manage.py clear_cache --cache=default && python manage.py sync_roles
22
web: gunicorn hypha.wsgi:application --log-file -
3-
worker: celery worker --app=hypha.celery --autoscale=6,2 --events
3+
worker: celery --app=hypha.celery worker --autoscale=6,2 --events

0 commit comments

Comments
 (0)