From 8dd49411e291fc35c9d9833a33f07f3c94561c94 Mon Sep 17 00:00:00 2001 From: Neo Huang <126607112+kneeyo1@users.noreply.github.com> Date: Thu, 9 Jan 2025 14:07:49 -0800 Subject: [PATCH] Lower the stale second threshold to 60 (#83196) --- src/sentry/runner/commands/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sentry/runner/commands/run.py b/src/sentry/runner/commands/run.py index 75679d41fc50d2..193a5ec171eb12 100644 --- a/src/sentry/runner/commands/run.py +++ b/src/sentry/runner/commands/run.py @@ -418,7 +418,7 @@ def cron(**options: Any) -> None: ) @click.option( "--stale-threshold-sec", - type=click.IntRange(min=300), + type=click.IntRange(min=60), help="Routes stale messages to stale topic if provided. This feature is currently being tested, do not pass in production yet.", ) @click.option(