Update routing to work

This commit is contained in:
2011-06-15 11:54:55 +01:00
parent f7185850ed
commit d3dae0f35c
2 changed files with 2 additions and 2 deletions

View File

@@ -88,7 +88,7 @@ LOGIN_URL = "/login"
### Celery Schedule
from celeryschedule import CELERYBEAT_SCHEDULE
from celeryschedule import *
CELERY_SEND_TASK_ERROR_EMAILS = True
CELERY_RESULT_BACKEND = "amqp"

2
fabfile.py vendored
View File

@@ -19,7 +19,7 @@ def production():
env.uwsgiconfig = os.path.join(env.path, '..', 'etc', 'uwsgi', 'dreddit-auth.ini')
env.password = sha1('%s-%s' % (env.user, env.vhost)).hexdigest()
env.celeryconf = '-l INFO --settings=%(config)s --pidfile=logs/%%n.pid --logfile=logs/%%n.log -n auth.pleaseignore.com bulk default -c 5 -c:bulk 3 -B:default' % env
env.celeryconf = '-l INFO --settings=%(config)s --pidfile=logs/%%n.pid --logfile=logs/%%n.log -n auth.pleaseignore.com bulk default -Q:bulk bulk -c 5 -c:bulk 3 -B:default' % env
def test():
"Use the test enviroment on Web2"