Merge pull request #19787 from kubernetes/revert-19743-scale

Revert "Increase api call latency threshold."
pull/6/head
Piotr Szczesniak 2016-01-18 12:06:50 +01:00
commit 1534672b4b
1 changed files with 2 additions and 2 deletions

View File

@ -42,8 +42,8 @@ const (
listPodLatencyMediumThreshold time.Duration = 1 * time.Second
listPodLatencyLargeThreshold time.Duration = 1 * time.Second
// TODO: Decrease the small threshold to 250ms once tests are fixed.
apiCallLatencySmallThreshold time.Duration = 1 * time.Second
apiCallLatencyMediumThreshold time.Duration = 1 * time.Second
apiCallLatencySmallThreshold time.Duration = 500 * time.Millisecond
apiCallLatencyMediumThreshold time.Duration = 500 * time.Millisecond
apiCallLatencyLargeThreshold time.Duration = 1 * time.Second
)