]> git.ipfire.org Git - thirdparty/tornado.git/commit
Fix stack trace logging for uncaught RequestHandler exceptions.
authorBen Darnell <ben@bendarnell.com>
Tue, 28 Dec 2010 02:30:21 +0000 (18:30 -0800)
committerBen Darnell <ben@bendarnell.com>
Tue, 28 Dec 2010 02:30:21 +0000 (18:30 -0800)
commitf63525f7a44d7b5d12c327d1173f2c2680d56757
tree1c094875325c69d7db4c85aacf0572977118b3e9
parentd677b158ddd7cd793d9472410ad489457df0d4ba
Fix stack trace logging for uncaught RequestHandler exceptions.

_handle_request_exception is a private method, but since I've endorsed
overriding it on the mailing list preserve backwards compatibility by
re-raising the exception so it appears in sys.exc_info().

Closes #199.
tornado/web.py