From 42a9d7897bbab1abe0d476c151ad6c77e72619f5 Mon Sep 17 00:00:00 2001 From: Kyle Consalus Date: Mon, 13 Jul 2026 10:47:41 -0700 Subject: [PATCH] feat(alerts api): Double frequency of deprecation brownouts --- src/sentry/options/defaults.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, )