How do I get broadcast to work with djcelery+ghettoq

Posted by user560833 on Stack Overflow See other posts from Stack Overflow or by user560833
Published on 2011-01-03T04:48:45Z Indexed on 2011/01/03 4:53 UTC
Read the original article Hit count: 129

Filed under:
|

I am using djcelery 2.1.4 with ghettoq 0.4.5 and django 1.2.3 and I am able to run tasks all day long, but when I try to use any broadcast functionality it fails without errors. Take the simplest case -- I run celeryd:

python manage.py celeryd

The daemon starts and I try to run a ping:

>>> from celery.task.control import ping
>>> ping()
[]

I can see the message that ping created appear in the database, but apparently none of the nodes are picking it up? Am I doing something wrong here? Does broadcast not work with carrot?

© Stack Overflow or respective owner

Related posts about django

Related posts about celery