mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
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:
parent
fa1711f84f
commit
e048e6814c
@ -967,7 +967,7 @@ def _get_ssh_command(ip_address, distribution):
|
|||||||
|
|
||||||
def _wait_for(method):
|
def _wait_for(method):
|
||||||
"""Wait until a condition is satisfied or finally give up."""
|
"""Wait until a condition is satisfied or finally give up."""
|
||||||
for _ in range(10):
|
for _ in range(60):
|
||||||
return_value = method()
|
return_value = method()
|
||||||
if return_value:
|
if return_value:
|
||||||
return return_value
|
return return_value
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user