We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9905629 commit 523d6cbCopy full SHA for 523d6cb
1 file changed
sentry_sdk/integrations/django.py
@@ -47,8 +47,9 @@ def sentry_patched_get_response(self, request):
47
48
try:
49
return old_get_response(self, request)
50
- except Exception:
+ except Exception as e:
51
capture_exception()
52
+ raise e
53
54
BaseHandler.get_response = sentry_patched_get_response
55
0 commit comments