I have the following setup with a fresh installed celery and django 1.4:
settings.py:
import djcelery djcelery.setup_loader() BROKER_HOST = \'localhost
I had the same issue with django 1.4.1 celery 3.0.9 and fixed it by naming the task.
@task() -> @task(name='testapp.tasks.add')