From 4f04cf9950b2fef46a79edbb694c407ab54054e3 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Mon, 4 Mar 2024 10:23:53 -0700 Subject: [PATCH] orchestra.PhysicalConsole: Increase timeout ... from 40s to 120s. A physical host being slightly slow to boot should not cause a reimage failure. Signed-off-by: Zack Cerza --- teuthology/orchestra/console.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/orchestra/console.py b/teuthology/orchestra/console.py index 3afed56c4..671413b9e 100644 --- a/teuthology/orchestra/console.py +++ b/teuthology/orchestra/console.py @@ -36,7 +36,7 @@ class PhysicalConsole(RemoteConsole): Physical Console (set from getRemoteConsole) """ def __init__(self, name, ipmiuser=None, ipmipass=None, ipmidomain=None, - timeout=40): + timeout=120): self.name = name self.shortname = self.getShortName(name) self.log = log.getChild(self.shortname)