Commit f973eb88 authored by Piotr Szczesniak's avatar Piotr Szczesniak

Merge pull request #9181 from fgrzadkowski/decrease_threshold

Decrease threshold for latency metrics in density tests
parents 7e5019fe 54697db6
......@@ -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, 5*time.Second, util.NewStringSet("events"))
highLatencyRequests, err := HighLatencyRequests(c, 3*time.Second, util.NewStringSet("events"))
expectNoError(err)
Expect(highLatencyRequests).NotTo(BeNumerically(">", 0))
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment