From e238ec0a1d4a7a033d67bfd8bd27d7657dc31701 Mon Sep 17 00:00:00 2001 From: Snigdha Sharma Date: Tue, 23 Jul 2024 11:56:47 -0700 Subject: [PATCH] Move flag to flagpole for easier testing --- src/sentry/features/permanent.py | 2 -- src/sentry/features/temporary.py | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sentry/features/permanent.py b/src/sentry/features/permanent.py index 008acf0f431e7f..f1887c735c42d3 100644 --- a/src/sentry/features/permanent.py +++ b/src/sentry/features/permanent.py @@ -109,8 +109,6 @@ def register_permanent_features(manager: FeatureManager): "organizations:org-ingest-subdomains": False, # Replace the footer Sentry logo with a Sentry pride logo "organizations:sentry-pride-logo-footer": False, - # Enable priority alerts using the Seer calculations - "organizations:seer-based-priority": False, } permanent_project_features = { diff --git a/src/sentry/features/temporary.py b/src/sentry/features/temporary.py index f8994d004719ee..4f4cd96bf9b7d6 100644 --- a/src/sentry/features/temporary.py +++ b/src/sentry/features/temporary.py @@ -417,6 +417,8 @@ def register_temporary_features(manager: FeatureManager): manager.add("organizations:insights-browser-webvitals-optional-components", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False) # Add default browser performance score profile for fallback when no or unknown browser name is provided manager.add("organizations:insights-default-performance-score-profiles", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False) + # Enable priority alerts using the Seer calculations. This flag will move to a permanent flag before we release. + manager.add("organizations:seer-based-priority", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False) # Enable standalone span ingestion manager.add("organizations:standalone-span-ingestion", OrganizationFeature, FeatureHandlerStrategy.INTERNAL, api_expose=False) # Enable the aggregate span waterfall view