Skip to content

Commit b97665a

Browse files
committed
k3s: remove timeout for importing container images in test
The timeout caused the `airgap-images` test to fail on slower hardware.
1 parent 02b963f commit b97665a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nixos/tests/k3s/airgap-images.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import ../make-test-python.nix (
3131
3232
start_all()
3333
machine.wait_for_unit("k3s")
34-
machine.wait_until_succeeds("journalctl -r --no-pager -u k3s | grep \"Imported images from /var/lib/rancher/k3s/agent/images/\"", timeout=120)
34+
machine.wait_until_succeeds("journalctl -r --no-pager -u k3s | grep \"Imported images from /var/lib/rancher/k3s/agent/images/\"")
3535
images = json.loads(machine.succeed("crictl img -o json"))
3636
image_names = [i["repoTags"][0] for i in images["images"]]
3737
with open("${k3s.imagesList}") as expected_images:

0 commit comments

Comments
 (0)