diff --git a/src/sentry/options/defaults.py b/src/sentry/options/defaults.py index 9d564509e1e4..7691d157d2a0 100644 --- a/src/sentry/options/defaults.py +++ b/src/sentry/options/defaults.py @@ -1554,10 +1554,10 @@ ) # Brownout schedule for the deprecated alerts API endpoints. -# 2 minute blackout 12 times a day (every 2 hours, on the hour, UTC). +# 2 minute blackout 24 times a day (every hour, on the hour, UTC). register( "api.deprecation.alerts-cron", - default="0 */2 * * *", + default="0 * * * *", type=String, flags=FLAG_AUTOMATOR_MODIFIABLE, )