From 62d415ca5030adff073300c40fe248c0745a873c Mon Sep 17 00:00:00 2001 From: Dan Fuller Date: Tue, 23 Jul 2024 10:34:16 -0700 Subject: [PATCH] feat(uptime): Bump default timeout for onboarding monitors to 10s (#74739) 1s is a bit low, just increasing this. --- src/sentry/uptime/detectors/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sentry/uptime/detectors/tasks.py b/src/sentry/uptime/detectors/tasks.py index 9e9076a5206f59..4157a6eadf17de 100644 --- a/src/sentry/uptime/detectors/tasks.py +++ b/src/sentry/uptime/detectors/tasks.py @@ -43,7 +43,7 @@ # Default value for how often we should run these subscriptions when onboarding them ONBOARDING_SUBSCRIPTION_INTERVAL_SECONDS = int(timedelta(minutes=60).total_seconds()) # Default timeout for subscriptions when we're onboarding them -ONBOARDING_SUBSCRIPTION_TIMEOUT_MS = 1000 +ONBOARDING_SUBSCRIPTION_TIMEOUT_MS = 10000 logger = logging.getLogger("sentry.uptime-url-autodetection")