Comment on Celery – Best PracticesparentComments−welder12yI also like to wrap every task with a decorator which sends an email if the task fails:https://gist.github.com/alanhamlett/dc8cdd4721ea63053f14−mjschultz12yYou might want to check out the CELERY_SEND_TASK_ERROR_EMAILS configuration option: http://celery.readthedocs.org/en/latest/configuration.html#c...
Comments
I also like to wrap every task with a decorator which sends an email if the task fails:
https://gist.github.com/alanhamlett/dc8cdd4721ea63053f14
You might want to check out the CELERY_SEND_TASK_ERROR_EMAILS configuration option: http://celery.readthedocs.org/en/latest/configuration.html#c...