Skip to content

Commit d68230f

Browse files
committed
test/case/infix_containers: extend retry for firewall basic
For a heavily loaded system, 10 seconds/retries is not enough time to expect containers to have started up. This extension is 3x but will not be used unless in edge cases. Signed-off-by: Joachim Wiberg <[email protected]>
1 parent 9f38627 commit d68230f

File tree

1 file changed

+2
-2
lines changed
  • test/case/infix_containers/container_firewall_basic

1 file changed

+2
-2
lines changed

test/case/infix_containers/container_firewall_basic/test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,11 @@
176176

177177
with test.step("Verify firewall container has started"):
178178
c = infamy.Container(target)
179-
until(lambda: c.running(NFTNM), attempts=10)
179+
until(lambda: c.running(NFTNM), attempts=30)
180180

181181
with test.step("Verify web container has started"):
182182
c = infamy.Container(target)
183-
until(lambda: c.running(WEBNM), attempts=10)
183+
until(lambda: c.running(WEBNM), attempts=30)
184184

185185
with infamy.IsolatedMacVlan(hport) as ns:
186186
NEEDLE = "tiny web server from the curiOS docker"

0 commit comments

Comments
 (0)