From 0bc1fbfb74f77e841979d9a1c59616ab346477e8 Mon Sep 17 00:00:00 2001 From: Donal McBreen Date: Mon, 22 May 2023 14:49:04 +0100 Subject: [PATCH] Set max-concurrent-downloads to 1 to prevent timeouts --- test/integration/docker/deployer/boot.sh | 2 +- test/integration/docker/vm/boot.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/docker/deployer/boot.sh b/test/integration/docker/deployer/boot.sh index b25f3334..77d6d1ea 100755 --- a/test/integration/docker/deployer/boot.sh +++ b/test/integration/docker/deployer/boot.sh @@ -1,5 +1,5 @@ #!/bin/bash -dockerd & +dockerd --max-concurrent-downloads 1 & exec sleep infinity diff --git a/test/integration/docker/vm/boot.sh b/test/integration/docker/vm/boot.sh index 81df5cdb..681a8a4e 100755 --- a/test/integration/docker/vm/boot.sh +++ b/test/integration/docker/vm/boot.sh @@ -4,6 +4,6 @@ while [ ! -f /root/.ssh/authorized_keys ]; do echo "Waiting for ssh keys"; sleep service ssh restart -dockerd & +dockerd --max-concurrent-downloads 1 & exec sleep infinity