From e82595c563edbd2d1319a5498e0e5789fe3b59fa Mon Sep 17 00:00:00 2001 From: Arpad Borsos Date: Thu, 18 Apr 2024 11:49:07 +0200 Subject: [PATCH] Clean up some obsolete features --- src/sentry/conf/server.py | 6 ------ src/sentry/features/temporary.py | 3 --- 2 files changed, 9 deletions(-) diff --git a/src/sentry/conf/server.py b/src/sentry/conf/server.py index 70fb393a9e3104..3fe9fef94bb15c 100644 --- a/src/sentry/conf/server.py +++ b/src/sentry/conf/server.py @@ -1446,8 +1446,6 @@ def custom_parameter_sort(parameter: dict) -> tuple[str, int]: "organizations:performance-span-histogram-view": "Enable histogram view in span details", "organizations:performance-transaction-name-only-search-indexed": "Enable transaction name only search on indexed", "organizations:profiling-global-suspect-functions": "Enable global suspect functions in profiling", - "organizations:sourcemaps-bundle-flat-file-indexing": "Enable the new flat file indexing system for sourcemaps.", - "organizations:sourcemaps-upload-release-as-artifact-bundle": "Upload release bundles as artifact bundles", "organizations:user-feedback-ui": "Enable User Feedback v2 UI", } @@ -1883,10 +1881,6 @@ def custom_parameter_sort(parameter: dict) -> tuple[str, int]: "organizations:settings-legal-tos-ui": False, # Enable the UI for the overage alert settings "organizations:slack-overage-notifications": False, - # Enable the new flat file indexing system for sourcemaps. - "organizations:sourcemaps-bundle-flat-file-indexing": False, - # Upload release bundles as artifact bundles. - "organizations:sourcemaps-upload-release-as-artifact-bundle": False, # Enable Slack messages using Block Kit "organizations:slack-block-kit": True, # Send Slack notifications to threads for Issue Alerts diff --git a/src/sentry/features/temporary.py b/src/sentry/features/temporary.py index 11423e2834ea0c..aeff80a261fedd 100644 --- a/src/sentry/features/temporary.py +++ b/src/sentry/features/temporary.py @@ -228,9 +228,6 @@ def register_temporary_features(manager: FeatureManager): manager.add("organizations:slack-block-kit", OrganizationFeature, FeatureHandlerStrategy.INTERNAL) manager.add("organizations:slack-overage-notifications", OrganizationFeature, FeatureHandlerStrategy.REMOTE) manager.add("organizations:slack-thread-issue-alert", OrganizationFeature, FeatureHandlerStrategy.REMOTE) - manager.add("organizations:sourcemaps-bundle-flat-file-indexing", OrganizationFeature, FeatureHandlerStrategy.REMOTE) - manager.add("organizations:sourcemaps-upload-release-as-artifact-bundle", OrganizationFeature, FeatureHandlerStrategy.REMOTE) - manager.add("organizations:stacktrace-processing-caching", OrganizationFeature, FeatureHandlerStrategy.INTERNAL) manager.add("organizations:spans-first-ui", OrganizationFeature, FeatureHandlerStrategy.INTERNAL) manager.add("organizations:standalone-span-ingestion", OrganizationFeature, FeatureHandlerStrategy.INTERNAL) manager.add("organizations:starfish-aggregate-span-waterfall", OrganizationFeature, FeatureHandlerStrategy.REMOTE)