Merge pull request #80649 from RobertKrawitz/report-throttling-v3

Report api request throttling at v=3
This commit is contained in:
Kubernetes Prow Robot 2019-12-10 12:16:06 -08:00 committed by GitHub
commit bbd48e99b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -562,7 +562,7 @@ func (r *Request) tryThrottle() error {
}
if latency := time.Since(now); latency > longThrottleLatency {
klog.V(4).Infof("Throttling request took %v, request: %s:%s", latency, r.verb, r.URL().String())
klog.V(3).Infof("Throttling request took %v, request: %s:%s", latency, r.verb, r.URL().String())
}
return err