Merge pull request #10607 from wojtek-t/higher_load_metrics

Increase latency metrics limit in capacity load
This commit is contained in:
Zach Loafman 2015-07-01 12:00:09 -07:00
commit 0b3d1b6f3b

View File

@ -87,7 +87,7 @@ var _ = Describe("Load capacity", func() {
}
// Verify latency metrics
highLatencyRequests, err := HighLatencyRequests(c, 1*time.Second, util.NewStringSet("events"))
highLatencyRequests, err := HighLatencyRequests(c, 3*time.Second, util.NewStringSet("events"))
expectNoError(err, "Too many instances metrics above the threshold")
Expect(highLatencyRequests).NotTo(BeNumerically(">", 0))
})