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 <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Sunil Mohan Adapa 2023-02-26 08:50:16 +05:30 committed by James Valleroy
parent fa1711f84f
commit e048e6814c
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -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