From abcab8e8c9581162f7068130cc494315ae313a6e Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Mon, 29 Sep 2025 10:29:39 -0700 Subject: [PATCH] orchestra/console.py: increase 'power status' timeout in set_power() we check to see if the power operation worked by examining ipmi power status. Give longer than 1s for the status command to complete. Signed-off-by: Dan Mick --- 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 a9c67ebbf1..b3ec963d7e 100644 --- a/teuthology/orchestra/console.py +++ b/teuthology/orchestra/console.py @@ -217,7 +217,7 @@ class PhysicalConsole(RemoteConsole): pexpect.EOF, pexpect.TIMEOUT ], - timeout=1 + timeout=20 ) self.log.debug( f"check power output: {child.logfile_read.getvalue().strip()}" -- 2.39.5