From 67dade90031b49bc7f39cc03337eb24a0e30d4de Mon Sep 17 00:00:00 2001 From: David Galloway Date: Wed, 27 May 2020 17:42:02 -0400 Subject: [PATCH] console.py: Wait longer for IPMI timeouts The smithi have really crappy/flaky BMCs. I occasionally see `'wait for power on' reached maximum tries (5) after waiting for 20.0 seconds` but when I go to check the BMC, it just needed some more time. So let's give it more time. Signed-off-by: David Galloway --- 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 ba327a8161..d5be782303 100644 --- a/teuthology/orchestra/console.py +++ b/teuthology/orchestra/console.py @@ -35,7 +35,7 @@ class PhysicalConsole(RemoteConsole): Physical Console (set from getRemoteConsole) """ def __init__(self, name, ipmiuser=None, ipmipass=None, ipmidomain=None, - logfile=None, timeout=20): + logfile=None, timeout=40): self.name = name self.shortname = self.getShortName(name) self.timeout = timeout -- 2.39.5