From 3bfd419a42ab217fc9463c50fba6f6e9079cd692 Mon Sep 17 00:00:00 2001 From: Richard Ortenberg Date: Fri, 14 Jul 2023 14:29:08 -0700 Subject: [PATCH] cleanup(crons): Removes crons issue platform flag (#52825) Finishes cleanup from https://github.com/getsentry/sentry/pull/52036 --- src/sentry/conf/server.py | 2 -- src/sentry/features/__init__.py | 1 - 2 files changed, 3 deletions(-) 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)