Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/sentry/features/temporary.py
Original file line number Diff line number Diff line change
Expand Up @@ -727,6 +727,8 @@ def register_temporary_features(manager: FeatureManager) -> None:
manager.add("projects:trace-attachment-processing", ProjectFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
# Enable Triage signals V0 for AI powered issue classification in sentry
manager.add("projects:triage-signals-v0", ProjectFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
# Enable the new Replay pipeline in Relay.
manager.add("organizations:new-replay-processing", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OrganizationFeature misplaced in Project scoped section

Low Severity

The feature flag "organizations:new-replay-processing" is an OrganizationFeature but it's added within the "Project scoped features" section (lines 696-734). It should be placed in the "Organization scoped features" section (starting at line 46) in alphabetical order, near other organizations:new-* flags around line 235-247.

Fix in Cursor Fix in Web


manager.add("projects:project-detail-apple-app-hang-rate", ProjectFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
# fmt: on
Expand Down
1 change: 1 addition & 0 deletions src/sentry/relay/config/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
"projects:span-v2-attachment-processing",
"projects:trace-attachment-processing",
"organizations:span-v2-otlp-processing",
"organizations:new-replay-processing",
]

EXTRACT_METRICS_VERSION = 1
Expand Down
Loading