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/conf/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -1052,6 +1052,8 @@ def create_partitioned_queues(name):
"organizations:minute-resolution-sessions": True,
# Automatically opt IN users to receiving Slack notifications.
"organizations:notification-slack-automatic": False,
# Enable the new native stack trace design
"organizations:native-stack-trace-v2": False,
# Enable version 2 of reprocessing (completely distinct from v1)
"organizations:reprocessing-v2": False,
# Enable sorting+filtering by semantic version of a release
Expand Down
1 change: 1 addition & 0 deletions src/sentry/features/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@
default_manager.add("organizations:mobile-screenshots", OrganizationFeature, True)
default_manager.add("organizations:monitors", OrganizationFeature)
default_manager.add("organizations:notification-slack-automatic", OrganizationFeature, True)
default_manager.add("organizations:native-stack-trace-v2", OrganizationFeature, True)
default_manager.add("organizations:onboarding", OrganizationFeature)
default_manager.add("organizations:org-subdomains", OrganizationFeature)
default_manager.add("organizations:performance-landing-widgets", OrganizationFeature, True)
Expand Down