Merge pull request #18697 from wojtek-t/relax_scalability_limits

Relax scalability limits
pull/6/head
Wojciech Tyczynski 2015-12-15 08:22:31 +01:00
commit 8e3b717bff
1 changed files with 2 additions and 1 deletions

View File

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