proxy: improve log for retrying an unavailable endpoint

Fixes #3541

Signed-off-by: Guohua ouyang <guohuaouyang@gmail.com>
release-2.3
Guohua ouyang 2015-09-21 16:16:11 +08:00 committed by Guohua Ouyang
parent f3d2b5831c
commit e35eeeae42
1 changed files with 1 additions and 1 deletions

View File

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