I'm using Piston with Django. Anytime there's an error in my handler code, I get a simplified, text-only description of the error in my http response, which gives me much less information that Django does when it's reporting errors. How can I stop Piston catching errors in this way?

link|improve this question

52% accept rate
feedback

2 Answers

Maybe you could try to override Resource.error_handle, and instead of using the default implementation:

https://bitbucket.org/jespern/django-piston/src/c4b2d21db51a/piston/resource.py#cl-248

just re-raise the original exception.

link|improve this answer
feedback

In your settings.py file, add PISTON_DISPLAY_ERRORS = False this will cause exceptions to be raised allowing them to be shown as expected in the Django debug error page when you are using DEBUG = True.

There are a few cases when the exception won't propagate properly. I've seen it happen when Piston says that the function definition doesn't match, but haven't looked to see why...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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