From 03f1fea123ff7cb2af2d151073c8ab58f374b377 Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Wed, 19 Nov 2025 15:34:22 +0000 Subject: [PATCH] hotfix(healthcheck): update outdated function comment --- internal/healthcheck/checker.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/healthcheck/checker.go b/internal/healthcheck/checker.go index 836cb3c9..74fc754b 100644 --- a/internal/healthcheck/checker.go +++ b/internal/healthcheck/checker.go @@ -55,9 +55,9 @@ func (c *Checker) SetConfig(tlsDialAddr string, icmpTarget netip.Addr) { c.icmpTarget = icmpTarget } -// Start starts the checker by first running a blocking 2s-timed TCP+TLS check, +// Start starts the checker by first running a blocking 6s-timed TCP+TLS check, // and, on success, starts the periodic checks in a separate goroutine: -// - a "small" ICMP echo check every 15 seconds +// - a "small" ICMP echo check every minute // - a "full" TCP+TLS check every 5 minutes // It returns a channel `runError` that receives an error (nil or not) when a periodic check is performed. // It returns an error if the initial TCP+TLS check fails.