All, I have started celery on development server using this:
python manage.py celeryd -E --loglevel=info I can see from rabbitmq management UI that its receiving messages under ready Queue. Screenshot attached. Rabbitmq logs though sometimes print it and sometimes not =INFO REPORT==== 17-Jul-2012::19:42:07 === accepting AMQP connection <0.8577.0> (127.0.0.1:51123 -> 127.0.0.1:5672) But the major problem is celery workers not consuming these messages and not processing them. I am using django 1.3 rabbit,"RabbitMQ","2.8.4" amqp_client,"RabbitMQ AMQP Client","2.8.4 My django settings file: INSTALLED_APPS = ( blah, 'djcelery', 'celerytest', ) import djcelery djcelery.setup_loader() Running python manage.py runserver Any pointers will be appreciated. How to debug this? Thanks. RJ -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
<<attachment: Screen Shot 2012-07-17 at 7.50.56 PM.png>>

