Skip to content

Commit 2e1c2b3

Browse files
authored
fix(issues): Add feature flag for new trace on performance issues (#87144)
1 parent 72454a6 commit 2e1c2b3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/sentry/features/temporary.py

+2
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,8 @@ def register_temporary_features(manager: FeatureManager):
138138
manager.add("organizations:issue-platform-deletion", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
139139
# Enable Issue Platform deletion UI
140140
manager.add("organizations:issue-platform-deletion-ui", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
141+
# Enable the new trace view on performance issues
142+
manager.add('organizations:issue-details-new-performance-trace-view', OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
141143
# Enables opt-in access to the streamlined issue details UI for all users of an organization
142144
manager.add("organizations:issue-details-streamline", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=True)
143145
# Enables streamlined issue details UI for all users of an organization without opt-out

0 commit comments

Comments
 (0)