Has anyone got debugger working with celery? Permanently deleted user Created August 18, 2011 10:47 Just wonderd if anyone has got this working, can i have a how to please
I have managed to get Pycharm to remote debug celery tasks
add the pycharm-debug.egg to project
The create a remote debug configuration
and add the following to your celery task
from pydev import pydevd
pydevd.settrace('localhost', port=6901, stdoutToServer=True, stderrToServer=True)
The start the remote debugger and then the celeryd process.
This will trigger break point inside Pycharm. I have been looking into a reload process for changes inside the task.
hope this helps
John
How do you create the remote debug configuration