Running this script in a django shell:

import processors.topics.tasks as t
t.test.delay()

Gives this error:

NotRegistered: 'processors.topics.tasks.test'

The weird thing is that chorus.processors.topics.tasks.test is definitely included in the [Tasks] printout when I run

python celeryd --verbosity=2 --loglevel=INFO --purge

Why am I getting the error?

link|improve this question

52% accept rate
feedback

1 Answer

up vote 1 down vote accepted

It has to do with the way you are importing the task for example, You are importing the task from the project instead of the app, chorus.processors.topics tasks instead of processors.topics.tasks. This creates problems for Celery, since the name will be different in the client and the server.

Here are the docs that relate to the following issue

link|improve this answer
1  
You don't have to register tasks anymore, but the link you provided is indeed relevant. You are importing the task from the project instead of the app, chorus.processors.topics.tasks instead of processors.topics.tasks. This creates problems for Celery, since the name will be different in the client and the server: ask.github.com/celery/userguide/… – asksol Nov 4 '11 at 11:54
@asksol I have updated the answer to reflect this. – myusuf3 Nov 4 '11 at 15:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.