diff --git a/src/sentry/conf/server.py b/src/sentry/conf/server.py index c6387b3069e0a..a3e235f5c7dcc 100644 --- a/src/sentry/conf/server.py +++ b/src/sentry/conf/server.py @@ -1445,7 +1445,6 @@ def custom_parameter_sort(parameter: dict) -> tuple[str, int]: "organizations:anr-analyze-frames": "Enable anr frame analysis", "organizations:device-classification": "Enable device.class as a selectable column", "organizations:gitlab-disable-on-broken": "Enable disabling gitlab integrations when broken is detected", - "organizations:grouping-stacktrace-ui": "Enable experimental new version of stacktrace component where additional data related to grouping is shown on each frame", "organizations:mobile-cpu-memory-in-transactions": "Display CPU and memory metrics in transactions with profiles", "organizations:performance-metrics-backed-transaction-summary": "Enable metrics-backed transaction summary view", "organizations:performance-new-trends": "Enable new trends", diff --git a/src/sentry/features/temporary.py b/src/sentry/features/temporary.py index 85b1f7cf15173..22ae4644fca95 100644 --- a/src/sentry/features/temporary.py +++ b/src/sentry/features/temporary.py @@ -127,9 +127,6 @@ def register_temporary_features(manager: FeatureManager): manager.add("organizations:escalating-metrics-backend", OrganizationFeature, FeatureHandlerStrategy.INTERNAL, api_expose=False) # Enable disabling gitlab integrations when broken is detected manager.add("organizations:gitlab-disable-on-broken", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False) - # Enable experimental new version of stacktrace component where additional - # data related to grouping is shown on each frame - manager.add("organizations:grouping-stacktrace-ui", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True) # Enable only calculating a secondary hash when needed manager.add("organizations:grouping-suppress-unnecessary-secondary-hash", OrganizationFeature, FeatureHandlerStrategy.INTERNAL, api_expose=False) # Allows an org to have a larger set of project ownership rules per project