mirror of
https://git.yoctoproject.org/poky
synced 2026-09-24 22:36:21 +02:00
bitbake: server/process: Show command in timeout message
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. (Bitbake rev: ac3cd866274f67b29eff89e393132bdabf76dbfd) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -502,7 +502,7 @@ class ServerCommunicator():
|
|||||||
def runCommand(self, command):
|
def runCommand(self, command):
|
||||||
self.connection.send(command)
|
self.connection.send(command)
|
||||||
if not self.recv.poll(30):
|
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):
|
if not self.recv.poll(30):
|
||||||
raise ProcessTimeout("Timeout while waiting for a reply from the bitbake server (60s)")
|
raise ProcessTimeout("Timeout while waiting for a reply from the bitbake server (60s)")
|
||||||
ret, exc = self.recv.get()
|
ret, exc = self.recv.get()
|
||||||
|
|||||||
Reference in New Issue
Block a user