Skip to content

Commit 513bbc8

Browse files
committed
update a comment
1 parent cf92dea commit 513bbc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/uptime/consumers/results_consumer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ def handle_result(self, subscription: UptimeSubscription | None, result: CheckRe
465465
return
466466

467467
subscription_interval_ms = 1000 * subscription.interval_seconds
468-
# If the scheduled check is over two intervals since the last seen check, we can declare the
468+
# If the scheduled check is two or more intervals since the last seen check, we can declare the
469469
# intervening checks missed.
470470
if last_update_raw is not None:
471471
if (2 * subscription_interval_ms) <= result["scheduled_check_time_ms"] - last_update_ms:

0 commit comments

Comments
 (0)