From 712cd010813925b2b8c94b0e19f46f373393f7d8 Mon Sep 17 00:00:00 2001 From: Benson Wong Date: Thu, 24 Apr 2025 09:56:20 -0700 Subject: [PATCH] fix confusing INFO message [no ci] --- proxy/process.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/process.go b/proxy/process.go index 76bcda1..92fd7f4 100644 --- a/proxy/process.go +++ b/proxy/process.go @@ -231,7 +231,7 @@ func (p *Process) start() error { if strings.Contains(err.Error(), "connection refused") { endTime, _ := checkDeadline.Deadline() ttl := time.Until(endTime) - p.proxyLogger.Infof("Connection refused on %s, retrying in %.0fs", healthURL, ttl.Seconds()) + p.proxyLogger.Infof("Connection refused on %s, giving up in %.0fs", healthURL, ttl.Seconds()) } else { p.proxyLogger.Infof("Health check error on %s, %v", healthURL, err) }