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-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=2db7905c8fffa5227b9f5acb5201213edc05962e;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 a9c67ebbf..b3ec963d7 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()}"