[bitbake-devel] [PATCH] server/process: Increase runCommand timeout

Richard Purdie richard.purdie at linuxfoundation.org
Fri Sep 22 16:22:06 UTC 2017


We were seeing cases where we could hit the 5s timeout on large/fast machines
running many different tasks at once. Increase this to 30s since the main
connection timeout path should no longer hit this slow path.

[YOCTO #12116]

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

diff --git a/lib/bb/server/process.py b/lib/bb/server/process.py
index 29f87cd..3d31355 100644
--- a/lib/bb/server/process.py
+++ b/lib/bb/server/process.py
@@ -324,7 +324,7 @@ class ServerCommunicator():
 
     def runCommand(self, command):
         self.connection.send(command)
-        if not self.recv.poll(5):
+        if not self.recv.poll(30):
             raise ProcessTimeout("Timeout while waiting for a reply from the bitbake server")
         return self.recv.get()
 
-- 
2.7.4




More information about the bitbake-devel mailing list