Merge "Increase threshold in TestHAL3Agent fullstack test" into stable/2025.1

This commit is contained in:
Zuul
2025-09-08 18:42:30 +00:00
committed by Gerrit Code Review

View File

@@ -566,8 +566,9 @@ class TestHAL3Agent(TestL3Agent):
netcat_udp.stop_processes() netcat_udp.stop_processes()
# With the default advert_int of 2s the keepalived master timeout is # With the default advert_int of 2s the keepalived master timeout is
# about 6s. Assert less than 90 lost packets (9 seconds) # about 6s. Assert less than 90 lost packets (9 seconds) plus 30 to
threshold = 90 # account for CI infrastructure variability
threshold = 120
lost = pinger.sent - pinger.received lost = pinger.sent - pinger.received
message = (f'Sent {pinger.sent} packets, received {pinger.received} ' message = (f'Sent {pinger.sent} packets, received {pinger.received} '