Skip to content

Commit 645995f

Browse files
tobias-wilfertpriscilawebdev
authored andcommitted
feat(replay): Feature flag for new replay processing pipeline (#107400)
Used for partially rolling out this: getsentry/relay#5580
1 parent 1898d28 commit 645995f

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/sentry/features/temporary.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -727,6 +727,8 @@ def register_temporary_features(manager: FeatureManager) -> None:
727727
manager.add("projects:trace-attachment-processing", ProjectFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
728728
# Enable Triage signals V0 for AI powered issue classification in sentry
729729
manager.add("projects:triage-signals-v0", ProjectFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
730+
# Enable the new Replay pipeline in Relay.
731+
manager.add("organizations:new-replay-processing", OrganizationFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
730732

731733
manager.add("projects:project-detail-apple-app-hang-rate", ProjectFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
732734
# fmt: on

src/sentry/relay/config/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@
7878
"projects:span-v2-attachment-processing",
7979
"projects:trace-attachment-processing",
8080
"organizations:span-v2-otlp-processing",
81+
"organizations:new-replay-processing",
8182
]
8283

8384
EXTRACT_METRICS_VERSION = 1

0 commit comments

Comments
 (0)