]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
bitbake: process: Increase server startup timeout
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 15 Aug 2017 09:16:27 +0000 (10:16 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 15 Aug 2017 23:04:38 +0000 (00:04 +0100)
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>
bitbake/lib/bb/server/process.py

index a7a6fbff697f063606f3c443c67c9e6eae88f226..2ebfdfc7e8c20957cf611fc4ff4a358ebd0241fb 100644 (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")