Browse Source

Django example: App main should be proj.celery

Ask Solem 11 years ago
parent
commit
aacb7d4a12
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/django/proj/celery.py

+ 1 - 1
examples/django/proj/celery.py

@@ -4,7 +4,7 @@ from celery import Celery
 from django.conf import settings
 
 
-celery = Celery('tasks', broker='amqp://localhost')
+celery = Celery('proj.celery')
 celery.config_from_object(settings)
 celery.autodiscover_tasks(settings.INSTALLED_APPS)