summaryrefslogtreecommitdiffstats
path: root/lib/bb
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-15 10:18:13 +0100
commit8d4c120ec46d6d7a54947c64d33e18cb60b60505 (patch)
tree94a79694be7ea63166fc48879f0f598080127438 /lib/bb
parent5e267f14bb0155889615f567a920af4a37eb3c6b (diff)
downloadbitbake-contrib-8d4c120ec46d6d7a54947c64d33e18cb60b60505.tar.gz
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@linuxfoundation.org>
Diffstat (limited to 'lib/bb')
-rw-r--r--lib/bb/server/process.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/server/process.py b/lib/bb/server/process.py
index a7a6fbff6..2ebfdfc7e 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")