Skip to content
Snippets Groups Projects
Commit 27e2a897 authored by Bastien Abadie's avatar Bastien Abadie
Browse files

Merge branch 'sentry-redis' into 'master'

Add Sentry Redis integration

See merge request !1530
parents cf502c41 eca9900e
No related branches found
No related tags found
1 merge request!1530Add Sentry Redis integration
......@@ -616,6 +616,7 @@ except ImportError:
if SENTRY_DSN and not DJANGO_SHELL:
import sentry_sdk
from sentry_sdk.integrations.django import DjangoIntegration
from sentry_sdk.integrations.redis import RedisIntegration
from sentry_sdk.integrations.rq import RqIntegration
from sentry_sdk.integrations.logging import ignore_logger
ignore_logger('django.security.DisallowedHost')
......@@ -628,6 +629,7 @@ if SENTRY_DSN and not DJANGO_SHELL:
send_default_pii=True,
integrations=[
DjangoIntegration(),
RedisIntegration(),
RqIntegration(),
],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment