Skip to content

Commit ac165c2

Browse files
simonartxavierputnopvut
authored andcommitted
tests: Fix load balancing system-tests.
As in [0], multiple load balancing system tests are randomly failing from time to time as they check that, after 10 requests sent to a load balancer, all backends are at least reached once. Statistically, this is failing from time to time. [1] fixed such issues, but there is a new occurrence. [0] https://github.com/ovsrobot/ovn/actions/runs/27547031217/job/81423590350 [1] c906da4: tests: Fixed load balancing system-tests Fixes: da55294 ("northd: Do not drop ip traffic with destination vip expressed via template vars.") Signed-off-by: Xavier Simonart <xsimonar@redhat.com> Signed-off-by: Mark Michelson <mmichels@redhat.com>
1 parent a42d960 commit ac165c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/system-ovn.at

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17733,7 +17733,7 @@ NETNS_START_TCPDUMP([foo1], [-neei foo1 src 20.0.0.2 and tcp], [foo1])
1773317733
NETNS_START_TCPDUMP([bar1], [-neei bar1 src 20.0.0.2 and tcp], [bar1])
1773417734

1773517735
check ovs-appctl dpctl/flush-conntrack
17736-
for i in $(seq 10); do
17736+
for i in $(seq 20); do
1773717737
NS_CHECK_EXEC([alice1], [wget 172.16.1.1:8000 -t 5 -T 1 --retry-connrefused -v -o wget$i.log])
1773817738
done
1773917739

0 commit comments

Comments
 (0)