We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9e0395f + 5f9e82f commit 86e4673Copy full SHA for 86e4673
pkg/cmd/roachtest/tests/cdc.go
@@ -2545,7 +2545,7 @@ CONFIGURE ZONE USING
2545
})
2546
ct.runFeedLatencyVerifier(feed, latencyTargets{
2547
initialScanLatency: 10 * time.Minute,
2548
- steadyLatency: time.Minute,
+ steadyLatency: 3 * time.Minute,
2549
2550
ct.waitForWorkload()
2551
},
pkg/cmd/roachtest/tests/latency_verifier.go
@@ -114,7 +114,7 @@ func (lv *latencyVerifier) noteHighwater(highwaterTime time.Time) {
114
return
115
}
116
117
- if lv.targetSteadyLatency == 0 || latency < lv.targetSteadyLatency/2 {
+ if lv.targetSteadyLatency == 0 || latency < lv.targetSteadyLatency {
118
lv.latencyBecameSteady = true
119
120
if !lv.latencyBecameSteady {
0 commit comments