fix print format string

Kubernetes-commit: 199a6eba8877e8908753f9977e18360660f7e072
This commit is contained in:
Cao Shufeng
2018-07-04 15:55:15 +08:00
committed by Kubernetes Publisher
parent 7e80aece91
commit 29c058197f

View File

@@ -731,7 +731,7 @@ func (r *Request) request(fn func(*http.Request, *http.Response)) error {
}
}
glog.V(4).Infof("Got a Retry-After %s response for attempt %d to %v", seconds, retries, url)
glog.V(4).Infof("Got a Retry-After %ds response for attempt %d to %v", seconds, retries, url)
r.backoffMgr.Sleep(time.Duration(seconds) * time.Second)
return false
}