From b4486b4d30c7b241204ac80a5f682e5c2cc9b391 Mon Sep 17 00:00:00 2001 From: Tobias Genannt Date: Tue, 7 May 2024 14:37:38 +0200 Subject: [PATCH] Fix #15992: Removed integrations for sentry-sdk According to the Sentry Python SDK documentation setting the integrations manually is only needed when the integration configuration needs to be changed. See: https://docs.sentry.io/platforms/python/integrations/django/#options --- netbox/netbox/settings.py | 1 - 1 file changed, 1 deletion(-) diff --git a/netbox/netbox/settings.py b/netbox/netbox/settings.py index 53eaffed5..38df16551 100644 --- a/netbox/netbox/settings.py +++ b/netbox/netbox/settings.py @@ -522,7 +522,6 @@ if SENTRY_ENABLED: sentry_sdk.init( dsn=SENTRY_DSN, release=VERSION, - integrations=[sentry_sdk.integrations.django.DjangoIntegration()], sample_rate=SENTRY_SAMPLE_RATE, traces_sample_rate=SENTRY_TRACES_SAMPLE_RATE, send_default_pii=True,