From ceaf832e63cf2158a27f37c7e7e63e6e76cff969 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Mon, 31 Jan 2022 13:47:18 +0000 Subject: [PATCH] root: remove boto integration in sentry to ease backup removal --- authentik/root/settings.py | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/authentik/root/settings.py b/authentik/root/settings.py index 23d569a38..26d1ed876 100644 --- a/authentik/root/settings.py +++ b/authentik/root/settings.py @@ -1,14 +1,4 @@ -""" -Django settings for authentik project. - -Generated by 'django-admin startproject' using Django 2.1.3. - -For more information on this file, see -https://docs.djangoproject.com/en/2.1/topics/settings/ - -For the full list of settings and their values, see -https://docs.djangoproject.com/en/2.1/ref/settings/ -""" +"""root settings for authentik""" import importlib import logging @@ -24,7 +14,6 @@ import structlog from celery.schedules import crontab from sentry_sdk import init as sentry_init from sentry_sdk.api import set_tag -from sentry_sdk.integrations.boto3 import Boto3Integration from sentry_sdk.integrations.celery import CeleryIntegration from sentry_sdk.integrations.django import DjangoIntegration from sentry_sdk.integrations.redis import RedisIntegration @@ -408,7 +397,6 @@ if _ERROR_REPORTING: DjangoIntegration(transaction_style="function_name"), CeleryIntegration(), RedisIntegration(), - Boto3Integration(), ThreadingIntegration(propagate_hub=True), ], before_send=before_send,