Skip to content

Commit bbd48e9

Browse files
authored
Merge pull request kubernetes#80649 from RobertKrawitz/report-throttling-v3
Report api request throttling at v=3
2 parents a8caae5 + e7cc2c2 commit bbd48e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

staging/src/k8s.io/client-go/rest/request.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ func (r *Request) tryThrottle() error {
562562
}
563563

564564
if latency := time.Since(now); latency > longThrottleLatency {
565-
klog.V(4).Infof("Throttling request took %v, request: %s:%s", latency, r.verb, r.URL().String())
565+
klog.V(3).Infof("Throttling request took %v, request: %s:%s", latency, r.verb, r.URL().String())
566566
}
567567

568568
return err

0 commit comments

Comments
 (0)