[oe-commits] [bitbake] branch master-next updated: process: Increase server startup timeout

git at git.openembedded.org git at git.openembedded.org
Tue Aug 15 09:19:56 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository bitbake.

The following commit(s) were added to refs/heads/master-next by this push:
     new 8d4c120  process: Increase server startup timeout
8d4c120 is described below

commit 8d4c120ec46d6d7a54947c64d33e18cb60b60505
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Tue Aug 15 10:16:27 2017 +0100

    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.
    
    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 a7a6fbf..2ebfdfc 100644
--- a/lib/bb/server/process.py
+++ b/lib/bb/server/process.py
@@ -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")

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list