Skip to content

Commit

Permalink
feat(uptime): Bump default timeout for onboarding monitors to 10s (#7…
Browse files Browse the repository at this point in the history
…4739)

1s is a bit low, just increasing this.
  • Loading branch information
wedamija authored Jul 23, 2024
1 parent fe2c37c commit 62d415c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sentry/uptime/detectors/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down

0 comments on commit 62d415c

Please sign in to comment.