From: Dan Mick Date: Mon, 29 Sep 2025 17:29:39 +0000 (-0700) Subject: orchestra/console.py: increase 'power status' timeout X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=abcab8e8c9581162f7068130cc494315ae313a6e;p=teuthology.git 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 --- 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()}"