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,