fix confusing INFO message [no ci]

This commit is contained in:
Benson Wong
2025-04-24 09:56:20 -07:00
parent 1f7aa359b1
commit 712cd01081

View File

@@ -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)
}