diff mbox series

server/process: Show command in timeout message

Message ID 20230630165838.2764067-1-richard.purdie@linuxfoundation.org
State Accepted, archived
Commit ac3cd866274f67b29eff89e393132bdabf76dbfd
Headers show
Series server/process: Show command in timeout message | expand

Commit Message

Richard Purdie June 30, 2023, 4:58 p.m. UTC
To learn more about the server timeout issues, be clear in the error
message about which command is showing the timeout. It is currently
unclear if this is the original command or a ping to the server.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 lib/bb/server/process.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/lib/bb/server/process.py b/lib/bb/server/process.py
index 7616ef53c8..4d4fa6d1be 100644
--- a/lib/bb/server/process.py
+++ b/lib/bb/server/process.py
@@ -502,7 +502,7 @@  class ServerCommunicator():
     def runCommand(self, command):
         self.connection.send(command)
         if not self.recv.poll(30):
-            logger.info("No reply from server in 30s")
+            logger.info("No reply from server in 30s (for command %s)" % command[0])
             if not self.recv.poll(30):
                 raise ProcessTimeout("Timeout while waiting for a reply from the bitbake server (60s)")
         ret, exc = self.recv.get()