From 29c058197f96fd6283ac3288981a71f72f05397e Mon Sep 17 00:00:00 2001 From: Cao Shufeng Date: Wed, 4 Jul 2018 15:55:15 +0800 Subject: [PATCH] fix print format string Kubernetes-commit: 199a6eba8877e8908753f9977e18360660f7e072 --- rest/request.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest/request.go b/rest/request.go index 09ffd76d..c593a387 100644 --- a/rest/request.go +++ b/rest/request.go @@ -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 }