From 502271dab153f0f312062c160b0cc8384606b66f Mon Sep 17 00:00:00 2001
From: Tal Shiri <tal@sookasa.com>
Date: Mon, 15 Jul 2013 13:58:41 -0700
Subject: [PATCH] made got_request_exception send the signal with
send_robust() instead of send(). Fixes #20752
---
django/core/handlers/base.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/django/core/handlers/base.py b/django/core/handlers/base.py
index 5911865..00c6ab1 100644
a
|
b
|
class BaseHandler(object):
|
192 | 192 | |
193 | 193 | except: # Handle everything else. |
194 | 194 | # Get the exception info now, in case another exception is thrown later. |
195 | | signals.got_request_exception.send(sender=self.__class__, request=request) |
| 195 | signals.got_request_exception.send_robust(sender=self.__class__, request=request) |
196 | 196 | response = self.handle_uncaught_exception(request, resolver, sys.exc_info()) |
197 | 197 | |
198 | 198 | try: |