1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 05:09:24 +00:00

bitbake: process: Increase server startup timeout

We're seeing the server fail to start within 8s on heavily loaded
autobuilders so increase this timeout to 30s which should be more
than enough time.

(Bitbake rev: 8d4c120ec46d6d7a54947c64d33e18cb60b60505)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2017-08-15 10:16:27 +01:00
parent 43b392536d
commit 1bfa9ca6c6
+1 -1
View File
@@ -388,7 +388,7 @@ class BitBakeServer(object):
self.bitbake_lock.close()
ready = ConnectionReader(self.readypipe)
r = ready.wait(8)
r = ready.wait(30)
if not r:
ready.close()
bb.error("Unable to start bitbake server")