Question about celery magazines

I am running django app + django-celery with a rabbitmq server on Ubuntu. I get a lot of these errors in celery:

[2011-06-03 13: 58: 15,387: WARNING / PoolWorker-1] HTTP Error 500: Internal Server Error

Where can I find the trace or response of this query to check what is wrong? What magazines should I look in?

Thank you, Arshavsky Alexander

+3
source share
1 answer

Why don't you start it not as a daemon, but directly, using the python manage.py celeryd command with the -l DEBUG option

python manage.py celeryd -l DEBUG

This way, you can also view full-color debug logs in an interactive shell.

+2
source

All Articles