Skip to content

Commit

Permalink
Merge pull request #87 from eduNEXT/lmm/hotfixsentry
Browse files Browse the repository at this point in the history
Fix sentry integration
  • Loading branch information
morenol committed Apr 6, 2020
2 parents 837e483 + faded49 commit 1968a92
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion eox_core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
Init for main eox-core app
"""
__version__ = '2.9.0'
__version__ = '2.9.1'
2 changes: 1 addition & 1 deletion eox_core/integrations/sentry.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def before_send(event, hint):
See: https://github.com/getsentry/sentry-python/issues/149#issuecomment-434448781
"""
ignored_errors = ()
for error in settings.SENTRY_IGNORED_ERRORS:
for error in settings.EOX_CORE_SENTRY_IGNORED_ERRORS:
try:
error_class = load_class(error)
ignored_errors += (error_class,)
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.9.0
current_version = 2.9.1
commit = True
tag = True

Expand Down

0 comments on commit 1968a92

Please sign in to comment.