Update updatePodWithRetries to get and then update

This commit is contained in:
nikhiljindal
2016-02-29 17:57:35 -08:00
parent f3d943e0a4
commit b65180c314
3 changed files with 32 additions and 12 deletions

View File

@@ -624,7 +624,7 @@ func (r *Request) tryThrottle() {
r.throttle.Accept()
}
if latency := time.Since(now); latency > longThrottleLatency {
glog.Warningf("Throttling request took %v, request: %s", latency, r.URL().String())
glog.Warningf("Throttling request took %v, request: %s:%s", latency, r.verb, r.URL().String())
}
}