Fixes typo proj.celery -> proj

This commit is contained in:
Ask Solem 2013-11-11 17:03:09 +00:00
Родитель ba1ea77c7d
Коммит 006a50f5ae
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -44,7 +44,7 @@ that defines the Celery instance:
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'proj.settings')
app = Celery('proj.celery')
app = Celery('proj')
app.config_from_object('django.conf:settings')
app.autodiscover_tasks(settings.INSTALLED_APPS, related_name='tasks')

Просмотреть файл

@ -9,7 +9,7 @@ from django.conf import settings
# set the default Django settings module for the 'celery' program.
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'proj.settings')
app = Celery('proj.celery')
app = Celery('proj')
# Using a string here means the worker will not have to
# pickle the object when using Windows.

Просмотреть файл

@ -2,7 +2,7 @@ from __future__ import absolute_import
from celery import Celery
app = Celery('proj.celery',
app = Celery('proj',
broker='amqp://',
backend='amqp://',
include=['proj.tasks'])