Skip to content

Commit 1968a92

Browse files
author
morenol
authored
Merge pull request #87 from eduNEXT/lmm/hotfixsentry
Fix sentry integration
2 parents 837e483 + faded49 commit 1968a92

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

eox_core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""
22
Init for main eox-core app
33
"""
4-
__version__ = '2.9.0'
4+
__version__ = '2.9.1'

eox_core/integrations/sentry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def before_send(event, hint):
2727
See: https://github.com/getsentry/sentry-python/issues/149#issuecomment-434448781
2828
"""
2929
ignored_errors = ()
30-
for error in settings.SENTRY_IGNORED_ERRORS:
30+
for error in settings.EOX_CORE_SENTRY_IGNORED_ERRORS:
3131
try:
3232
error_class = load_class(error)
3333
ignored_errors += (error_class,)

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.9.0
2+
current_version = 2.9.1
33
commit = True
44
tag = True
55

0 commit comments

Comments
 (0)