[oe-commits] [bitbake] 02/02: increase server startup time

git at git.openembedded.org git at git.openembedded.org
Wed Dec 5 13:12:58 UTC 2018


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

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

commit ecaa36442650777c0511312f48c2c6a36bd74d23
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Sun Dec 2 19:18:14 2018 +0000

    increase server startup time
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/server/process.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/bb/server/process.py b/lib/bb/server/process.py
index edd604b..98c6dea 100644
--- a/lib/bb/server/process.py
+++ b/lib/bb/server/process.py
@@ -411,8 +411,8 @@ class BitBakeServer(object):
         ready = ConnectionReader(self.readypipe)
         r = ready.poll(5)
         if not r:
-            bb.note("Bitbake server didn't start within 5 seconds, waiting for 30")
-            r = ready.poll(30)
+            bb.note("Bitbake server didn't start within 5 seconds, waiting for 90")
+            r = ready.poll(90)
         if r:
             try:
                 r = ready.get()

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


More information about the Openembedded-commits mailing list