From e048e6814c64e20539f477af493a17e8772d457f Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Sun, 26 Feb 2023 08:50:16 +0530 Subject: [PATCH] container: Increase wait time to accommodate slower architectures This is for arm64 boards like Raspberry Pi and cross-arch VMs. Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- container | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container b/container index eab4dae2f..710fd3645 100755 --- a/container +++ b/container @@ -967,7 +967,7 @@ def _get_ssh_command(ip_address, distribution): def _wait_for(method): """Wait until a condition is satisfied or finally give up.""" - for _ in range(10): + for _ in range(60): return_value = method() if return_value: return return_value