Skip to content

Clean up some obsolete features #69182

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 14, 2024
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
6 changes: 0 additions & 6 deletions src/sentry/conf/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -1439,8 +1439,6 @@ def custom_parameter_sort(parameter: dict) -> tuple[str, int]:
"organizations:performance-span-histogram-view": "Enable histogram view in span details",
"organizations:performance-transaction-name-only-search-indexed": "Enable transaction name only search on indexed",
"organizations:profiling-global-suspect-functions": "Enable global suspect functions in profiling",
"organizations:sourcemaps-bundle-flat-file-indexing": "Enable the new flat file indexing system for sourcemaps.",
"organizations:sourcemaps-upload-release-as-artifact-bundle": "Upload release bundles as artifact bundles",
"organizations:user-feedback-ui": "Enable User Feedback v2 UI",
}

Expand Down Expand Up @@ -1854,10 +1852,6 @@ def custom_parameter_sort(parameter: dict) -> tuple[str, int]:
"organizations:settings-legal-tos-ui": False,
# Enable the UI for the overage alert settings
"organizations:slack-overage-notifications": False,
# Enable the new flat file indexing system for sourcemaps.
"organizations:sourcemaps-bundle-flat-file-indexing": False,
# Upload release bundles as artifact bundles.
"organizations:sourcemaps-upload-release-as-artifact-bundle": False,
# Enable Slack messages using Block Kit
"organizations:slack-block-kit": True,
# Send Slack notifications to threads for Issue Alerts
Expand Down
2 changes: 0 additions & 2 deletions src/sentry/features/temporary.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,6 @@ def register_temporary_features(manager: FeatureManager):
manager.add("organizations:slack-improvements", OrganizationFeature, FeatureHandlerStrategy.OPTIONS)
manager.add("organizations:slack-endpoint-regression-image", OrganizationFeature, FeatureHandlerStrategy.OPTIONS)
manager.add("organizations:slack-function-regression-image", OrganizationFeature, FeatureHandlerStrategy.OPTIONS)
manager.add("organizations:sourcemaps-bundle-flat-file-indexing", OrganizationFeature, FeatureHandlerStrategy.REMOTE)
manager.add("organizations:sourcemaps-upload-release-as-artifact-bundle", OrganizationFeature, FeatureHandlerStrategy.REMOTE)
manager.add("organizations:stacktrace-processing-caching", OrganizationFeature, FeatureHandlerStrategy.INTERNAL)
manager.add("organizations:spans-first-ui", OrganizationFeature, FeatureHandlerStrategy.INTERNAL)
manager.add("organizations:standalone-span-ingestion", OrganizationFeature, FeatureHandlerStrategy.INTERNAL)
Expand Down
Loading