diff --git a/server/Procfile b/server/Procfile index 2afc8098a..583a0013c 100644 --- a/server/Procfile +++ b/server/Procfile @@ -1,8 +1,8 @@ rest: gunicorn -c gunicorn_config.py wsgi wamp: python3 -u ws.py -work: celery -A worker -X "${SUPERDESK_CELERY_PREFIX}publish,${SUPERDESK_CELERY_PREFIX}publish_priority" worker -publish: celery -A worker -Q "${SUPERDESK_CELERY_PREFIX}publish" worker +work: celery -A worker worker -X "${SUPERDESK_CELERY_PREFIX}publish,${SUPERDESK_CELERY_PREFIX}publish_priority" +publish: celery -A worker worker -Q "${SUPERDESK_CELERY_PREFIX}publish" capi: gunicorn -c gunicorn_config.py content_api.wsgi papi: gunicorn -c gunicorn_config.py prod_api.wsgi beat: celery -A worker beat -publish_priority: celery -A worker -Q "${SUPERDESK_CELERY_PREFIX}publish_priority" worker +publish_priority: celery -A worker worker -Q "${SUPERDESK_CELERY_PREFIX}publish_priority"