From 12ad30a685686666a29d3da90dc773a41a7948fa Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Thu, 9 Aug 2012 20:05:45 +0100 Subject: [PATCH] Fix the celeryd startup call to the old command --- fabfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabfile.py b/fabfile.py index b6bf3f0..80ab39f 100644 --- a/fabfile.py +++ b/fabfile.py @@ -18,7 +18,7 @@ def production(): env.path = '/home/dreddit/apps/dreddit-auth' env.config = 'conf.production' env.uwsgiconfig = os.path.join(env.path, '..', '..', 'etc', 'uwsgi', 'dreddit-auth.ini') - env.celeryconf = '-l INFO --settings=%(config)s --pidfile=logs/%%n.pid --logfile=logs/%%n.log -n auth.pleaseignore.com bulk default fastresponse -Q:bulk bulk -Q:fastresponse fastresponse -c 5 -c:bulk 3 -c:fastresponse 3 -B:default --scheduler=djcelery.schedulers.DatabaseScheduler' % env + env.celeryconf = '--cmd="app/manage.py celery worker" -l INFO --settings=%(config)s --pidfile=logs/%%n.pid --logfile=logs/%%n.log -n auth.pleaseignore.com bulk default fastresponse -Q:bulk bulk -Q:fastresponse fastresponse -c 5 -c:bulk 3 -c:fastresponse 3 -B:default --scheduler=djcelery.schedulers.DatabaseScheduler' % env @task