mirror of https://github.com/zulip/zulip.git
Change Humbug => Zulip in name of exception filter module.
(imported from commit 87d4a45834f605a83fa5f9286217258dafaa1b92)
This commit is contained in:
parent
d63a398716
commit
d6e32668c8
|
@ -600,7 +600,7 @@ if not DEPLOYED:
|
|||
|
||||
if DEPLOYED:
|
||||
# Filter out user data
|
||||
DEFAULT_EXCEPTION_REPORTER_FILTER = 'zerver.filters.HumbugExceptionReporterFilter'
|
||||
DEFAULT_EXCEPTION_REPORTER_FILTER = 'zerver.filters.ZulipExceptionReporterFilter'
|
||||
|
||||
# We want all temporary uploaded files to be stored on disk.
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ from __future__ import absolute_import
|
|||
from django.views.debug import SafeExceptionReporterFilter
|
||||
from django.http import build_request_repr
|
||||
|
||||
class HumbugExceptionReporterFilter(SafeExceptionReporterFilter):
|
||||
class ZulipExceptionReporterFilter(SafeExceptionReporterFilter):
|
||||
def get_post_parameters(self, request):
|
||||
filtered_post = SafeExceptionReporterFilter.get_post_parameters(self, request).copy()
|
||||
filtered_vars = ['content', 'secret', 'password', 'key', 'api-key', 'subject', 'stream',
|
||||
|
|
Loading…
Reference in New Issue