Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Initially I had a Django app with the included testing server. To debug this setup, I can just add a import pdb; pdb.set_trace() anywhere in the code and have a breaking point that throws me into an interactive debugger in Terminal (on command-line).

Recently I shifted to gunicorn to gain some perf benifits. How can I get a similar behavior while using this Gunicorn setup. I have tried by setting gunicorn settings with debug=True and daemon=False but it does not work.

Anyone has a solution to this?

share|improve this question
Did you find out how to make it work? – duduklein Dec 14 '12 at 2:49
yes, please read my answer. this is what I do now... – Srikar Appal Dec 14 '12 at 3:23
I managed to use gunicorn and ipdb together. see my answer below. I also suggest setting the timeout to a bigger value, so you have time to debug. – duduklein Dec 15 '12 at 19:48

3 Answers

If you are able to launch gunicorn pointing at an application instance that is an instance of the DebuggedApplication class from the werkzeug library, you will be able to set break points using the werkzeug debugger with import ipdb; ipdb.set_trace() right in your browser.

import django.core.handlers.wsgi
from werkzeug.debug import DebuggedApplication

application = django.core.handlers.wsgi.WSGIHandler()
application = DebuggedApplication(application, evalex=True)

Make sure you install werkzeug library and ipdb of course. (pip install werkzeug and pip install ipdb)

share|improve this answer
this did not work – duduklein Dec 14 '12 at 2:39

What I finally ended up doing is run python manage.py runserver <your_external_IP>:8000 when I want to use pdb.

So you need to have 2 different repositories in the same machine, one being LIVE production build (the one running gunicorn) and the other being the TEST build, the one I need to debug on where I use pdb. When things seem stable on TEST build I merge the TEST branch with LIVE branch. No development or changes happen on LIVE branch that way I avoid merge conflicts.

Hopefully this helps others who are addicted to pdb ;)

share|improve this answer
thanks for sharing your solution. I appreciate it. I managed to make it work and also shared mine. – duduklein Dec 14 '12 at 9:58

I managed now to use gunicron with djnago and ipdb.

run python -m ipdb manage.py run_gunicorn --debug -t 3600

I'm using Django 1.4 and gunicorn 0.16.1. then you can normally use the import ipdb; ipdb.set_trace() in the code. There is no need for the werkzeug library.

I'm trying to debug a facebook app, so I can't use the build in development server, because facebook tries to use SSL and the dev server just can't respond properly

While I was looking for a solution, I found a post pdb: Using the Python debugger in Django that suggests to run python -m pdb manage.py runserver all the time. Although this is not necessary with django's dev server, I decided to give it a try with gunicordn and ipdb and it worked.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.