Revert "Increase api call latency threshold."

This commit is contained in:
Piotr Szczesniak 2016-01-18 11:09:47 +01:00
parent 4c37dbe6e6
commit bd26e6eae0

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
)