summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2015-09-08 19:39:44 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-12 22:50:14 +0100
commitaaa48b69f3021553cef18512b3620a5083c31ba5 (patch)
tree8b8dd5d090b2fc65a1804b2a50d1f947e43e2a60 /bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
parent58ef81c5cc0c6a42f3ede1b79d80ec2d4563bd94 (diff)
downloadpoky-aaa48b69f3021553cef18512b3620a5083c31ba5.tar.gz
bitbake: toaster: increase waiting time
Increased waiting time for toasterUI from 10 to 25 seconds. Bitbake takes longer time to start, so toaster should wait longer. [YOCTO #8240] (Bitbake rev: 224ee3685fe20915b21d299ab80f7b289a916dca) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: brian avery <avery.brian@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/bldcontrol/localhostbecontroller.py')
-rw-r--r--bitbake/lib/toaster/bldcontrol/localhostbecontroller.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
index 231a7d3b3a..a9909b8e1e 100644
--- a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
+++ b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
@@ -140,7 +140,7 @@ class LocalhostBEController(BuildEnvironmentController):
140 140
141 retries = 0 141 retries = 0
142 started = False 142 started = False
143 while not started and retries < 10: 143 while not started and retries < 50:
144 started = _toaster_ui_started(toaster_ui_log_filepath, toaster_ui_log_filelength) 144 started = _toaster_ui_started(toaster_ui_log_filepath, toaster_ui_log_filelength)
145 import time 145 import time
146 logger.debug("localhostbecontroller: Waiting bitbake server to start") 146 logger.debug("localhostbecontroller: Waiting bitbake server to start")
@@ -150,7 +150,7 @@ class LocalhostBEController(BuildEnvironmentController):
150 if not started: 150 if not started:
151 toaster_ui_log = open(os.path.join(self.be.builddir, "toaster_ui.log"), "r").read() 151 toaster_ui_log = open(os.path.join(self.be.builddir, "toaster_ui.log"), "r").read()
152 toaster_server_log = open(os.path.join(self.be.builddir, "toaster_server.log"), "r").read() 152 toaster_server_log = open(os.path.join(self.be.builddir, "toaster_server.log"), "r").read()
153 raise BuildSetupException("localhostbecontroller: Bitbake server did not start in 5 seconds, aborting (Error: '%s' '%s')" % (toaster_ui_log, toaster_server_log)) 153 raise BuildSetupException("localhostbecontroller: Bitbake server did not start in 25 seconds, aborting (Error: '%s' '%s')" % (toaster_ui_log, toaster_server_log))
154 154
155 logger.debug("localhostbecontroller: Started bitbake server") 155 logger.debug("localhostbecontroller: Started bitbake server")
156 156