From 1196d48d7a66341157952fa84e8ed476b6ddc06e Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Thu, 8 Nov 2018 20:46:43 +0100 Subject: [PATCH] Call Celery worker properly --- contrib/supervisord.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/supervisord.conf b/contrib/supervisord.conf index 9a8d695e743..fd1f0852bcf 100644 --- a/contrib/supervisord.conf +++ b/contrib/supervisord.conf @@ -34,7 +34,7 @@ stderr_logfile = /dev/stderr stderr_logfile_maxbytes = 0 [program:celery] -command = python3 -m celery worker -A readthedocs -Q default,celery,web,builder -l DEBUG -c 2 +command = python3 -m celery worker -A readthedocs.worker -Q default,celery,web,builder -l DEBUG -c 2 directory = ../ priority = 100 stopasgroup = True