From 34fea5207067198de551905c519ac190b098b377 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Mon, 11 Jul 2022 15:04:26 -0400 Subject: [PATCH] Fix an unrelated non-determinism bug in the system tests See similar earlier commit --- nixos/tests/test_privatestorage.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/tests/test_privatestorage.py b/nixos/tests/test_privatestorage.py index fdef4244..df2aeb93 100644 --- a/nixos/tests/test_privatestorage.py +++ b/nixos/tests/test_privatestorage.py @@ -93,6 +93,9 @@ def test( # It should have Eliot logging turned on as well. storage.succeed('[ -e /var/db/tahoe-lafs/storage/logs/eliot.json ]') + # Make sure the issuer is ready to accept connections. + issuer.wait_for_open_port(80) + # # Storage appears to be working so try to get a client to speak with it. # -- GitLab