Reduce threshold for request latency in density tests to 5 sec

This commit is contained in:
Filip Grzadkowski 2015-05-25 15:05:27 +02:00
parent 9797255a15
commit 9a22286622

View File

@ -79,7 +79,7 @@ var _ = Describe("Density", func() {
// Verify latency metrics
// TODO: Update threshold to 1s once we reach this goal
// TODO: We should reset metrics before the test. Currently previous tests influence latency metrics.
highLatencyRequests, err := HighLatencyRequests(c, 10*time.Second, util.NewStringSet("events"))
highLatencyRequests, err := HighLatencyRequests(c, 5*time.Second, util.NewStringSet("events"))
expectNoError(err)
Expect(highLatencyRequests).NotTo(BeNumerically(">", 0))
})