diff --git a/proxy/director.go b/proxy/director.go index 0cfe37d89..2fa51e2db 100644 --- a/proxy/director.go +++ b/proxy/director.go @@ -126,7 +126,7 @@ func timedUnavailabilityFunc(wait time.Duration) func(*endpoint) { return func(ep *endpoint) { time.AfterFunc(wait, func() { ep.Available = true - log.Printf("proxy: marked endpoint %s available", ep.URL.String()) + log.Printf("proxy: marked endpoint %s available, to retest connectivity", ep.URL.String()) }) } }