summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2017-08-15 10:16:27 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-08-16 00:04:38 +0100
commit1bfa9ca6c61797ffadea6e3f2a8e17cf6e79a76b (patch)
tree4ef9347030c7dccb54f65b0be381190fb037acb6
parent43b392536da5890eba097048f882bdea7f3d143a (diff)
downloadpoky-1bfa9ca6c61797ffadea6e3f2a8e17cf6e79a76b.tar.gz
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>
-rw-r--r--bitbake/lib/bb/server/process.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py
index a7a6fbff69..2ebfdfc7e8 100644
--- a/bitbake/lib/bb/server/process.py
+++ b/bitbake/lib/bb/server/process.py
@@ -388,7 +388,7 @@ class BitBakeServer(object):
388 self.bitbake_lock.close() 388 self.bitbake_lock.close()
389 389
390 ready = ConnectionReader(self.readypipe) 390 ready = ConnectionReader(self.readypipe)
391 r = ready.wait(8) 391 r = ready.wait(30)
392 if not r: 392 if not r:
393 ready.close() 393 ready.close()
394 bb.error("Unable to start bitbake server") 394 bb.error("Unable to start bitbake server")