Fix the celeryd startup call to the old command

This commit is contained in:
2012-08-09 20:05:45 +01:00
parent 3c619a656e
commit 12ad30a685

2
fabfile.py vendored
View File

@@ -18,7 +18,7 @@ def production():
env.path = '/home/dreddit/apps/dreddit-auth' env.path = '/home/dreddit/apps/dreddit-auth'
env.config = 'conf.production' env.config = 'conf.production'
env.uwsgiconfig = os.path.join(env.path, '..', '..', 'etc', 'uwsgi', 'dreddit-auth.ini') 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 @task