Skip to content

Commit 379fa29

Browse files
Stress test gets one more write because of retry
Previous behavior was incorrect - at least one client will get through.
1 parent 5237978 commit 379fa29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/extended/router/stress.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ var _ = g.Describe("[Conformance][Area:Networking][Feature:Router]", func() {
224224
o.Expect(ingress.Conditions[0].Type).To(o.Equal(routev1.RouteAdmitted))
225225
o.Expect(ingress.Conditions[0].Status).To(o.Equal(corev1.ConditionTrue))
226226
}
227-
if conflicting < 3 {
227+
if conflicting <= 3 {
228228
return false, nil
229229
}
230230
outputIngress(routes.Items...)

0 commit comments

Comments
 (0)