From 47b35d6e3c6ce926dae5003a12197af8eafdaa7c Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Mon, 21 Jul 2025 14:06:37 +1000 Subject: [PATCH] ci: increase timeout for download roaming test (#9945) Now that we don't tolerate any failures in the download, this test sometimes fails because the timeout is a bit too tight. --- scripts/tests/direct-download-roaming-network.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/tests/direct-download-roaming-network.sh b/scripts/tests/direct-download-roaming-network.sh index 880ae090b..d5aeb2dd3 100755 --- a/scripts/tests/direct-download-roaming-network.sh +++ b/scripts/tests/direct-download-roaming-network.sh @@ -2,11 +2,11 @@ source "./scripts/tests/lib.sh" -# Download 10MB at a max rate of 1MB/s. Shouldn't take longer than 12 seconds (allows for 2s of restablishing) +# Download 10MB at a max rate of 1MB/s. Shouldn't take longer than 13 seconds (allows for 3s of restablishing) client sh -c \ "curl \ --fail \ - --max-time 12 \ + --max-time 13 \ --keepalive-time 1 \ --limit-rate 1000000 \ --output download.file \