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 @@ -507,6 +507,8 @@ def register_temporary_features(manager: FeatureManager) -> None:
manager.add("projects:trace-attachment-processing", ProjectFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
# Enables the uploading of minidumps to the objectstore.
manager.add("projects:relay-minidump-uploads", ProjectFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
# Enables reshaping Nintendo Switch crash events in Relay so issue titles fall back to the crashing function.
manager.add("projects:relay-nintendo-event-rewrite", ProjectFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
# Enables the uploading of playstation attachments to the objectstore.
manager.add("projects:relay-playstation-uploads", ProjectFeature, FeatureHandlerStrategy.FLAGPOLE, api_expose=False)
# Enables uploading streams to objectstore via multipart uploads.
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 @@ -66,6 +66,7 @@
"projects:trace-attachment-processing",
"projects:relay-minidump-uploads",
"projects:relay-playstation-uploads",
"projects:relay-nintendo-event-rewrite",
"projects:relay-upload-multipart",
]

Expand Down
Loading