Skip to content

Commit

Permalink
Move flag to flagpole for easier testing
Browse files Browse the repository at this point in the history
  • Loading branch information
snigdhas committed Jul 23, 2024
1 parent 7d22367 commit e238ec0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/sentry/features/permanent.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
2 changes: 2 additions & 0 deletions src/sentry/features/temporary.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e238ec0

Please sign in to comment.