diff --git a/src/sentry/conf/server.py b/src/sentry/conf/server.py index 2f25e45707970a..0e6ce4a82e476f 100644 --- a/src/sentry/conf/server.py +++ b/src/sentry/conf/server.py @@ -1328,8 +1328,6 @@ def SOCIAL_AUTH_DEFAULT_USERNAME() -> str: # Enable creating organizations within sentry (if SENTRY_SINGLE_ORGANIZATION # is not enabled). "organizations:create": True, - # Use issue platform for crons issues - "organizations:crons-issue-platform": False, # Use new listing page for crons "organizations:crons-timeline-listing-page": False, # Enable usage of customer domains on the frontend diff --git a/src/sentry/features/__init__.py b/src/sentry/features/__init__.py index 58ccf24ff0f18f..3bc6e8457743f2 100644 --- a/src/sentry/features/__init__.py +++ b/src/sentry/features/__init__.py @@ -71,7 +71,6 @@ default_manager.add("organizations:auto-enable-codecov", OrganizationFeature, FeatureHandlerStrategy.INTERNAL) default_manager.add("organizations:auto-repo-linking", OrganizationFeature, FeatureHandlerStrategy.REMOTE) default_manager.add("organizations:crash-rate-alerts", OrganizationFeature, FeatureHandlerStrategy.INTERNAL) -default_manager.add("organizations:crons-issue-platform", OrganizationFeature, FeatureHandlerStrategy.INTERNAL) default_manager.add("organizations:crons-timeline-listing-page", OrganizationFeature, FeatureHandlerStrategy.REMOTE) default_manager.add("organizations:customer-domains", OrganizationFeature, FeatureHandlerStrategy.REMOTE) default_manager.add("organizations:dashboards-mep", OrganizationFeature, FeatureHandlerStrategy.REMOTE)