Commit abf81b69 authored by Mike Danese's avatar Mike Danese

Merge pull request #19743 from bprashanth/scale

Increase api call latency threshold.
parents 9d23d750 6d172bca
...@@ -42,8 +42,8 @@ const ( ...@@ -42,8 +42,8 @@ const (
listPodLatencyMediumThreshold time.Duration = 1 * time.Second listPodLatencyMediumThreshold time.Duration = 1 * time.Second
listPodLatencyLargeThreshold time.Duration = 1 * time.Second listPodLatencyLargeThreshold time.Duration = 1 * time.Second
// TODO: Decrease the small threshold to 250ms once tests are fixed. // TODO: Decrease the small threshold to 250ms once tests are fixed.
apiCallLatencySmallThreshold time.Duration = 500 * time.Millisecond apiCallLatencySmallThreshold time.Duration = 1 * time.Second
apiCallLatencyMediumThreshold time.Duration = 500 * time.Millisecond apiCallLatencyMediumThreshold time.Duration = 1 * time.Second
apiCallLatencyLargeThreshold time.Duration = 1 * time.Second apiCallLatencyLargeThreshold time.Duration = 1 * time.Second
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment