From c6f72c20d121a8f4e161d490af0aa2db48e05caf Mon Sep 17 00:00:00 2001 From: Cao Shufeng Date: Fri, 9 Mar 2018 18:07:04 +0800 Subject: [PATCH] [advanced audit]fix comment about throttle burst --- .../src/k8s.io/apiserver/plugin/pkg/audit/buffered/buffered.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staging/src/k8s.io/apiserver/plugin/pkg/audit/buffered/buffered.go b/staging/src/k8s.io/apiserver/plugin/pkg/audit/buffered/buffered.go index 296cc654fb6..467580a05a7 100644 --- a/staging/src/k8s.io/apiserver/plugin/pkg/audit/buffered/buffered.go +++ b/staging/src/k8s.io/apiserver/plugin/pkg/audit/buffered/buffered.go @@ -54,7 +54,7 @@ type BatchConfig struct { ThrottleEnable bool // ThrottleQPS defines the allowed rate of batches per second sent to the delegate backend. ThrottleQPS float32 - // ThrottleBurst defines the maximum rate of batches per second sent to the delegate backend in case + // ThrottleBurst defines the maximum number of requests sent to the delegate backend at the same moment in case // the capacity defined by ThrottleQPS was not utilized. ThrottleBurst int }