* [PATCH 0/1] increase waiting time for bitbake @ 2015-09-09 2:39 brian avery 2015-09-09 2:39 ` [PATCH 1/1] toaster: increase waiting time brian avery 0 siblings, 1 reply; 3+ messages in thread From: brian avery @ 2015-09-09 2:39 UTC (permalink / raw) To: bitbake-devel this increases the time toaster waits for bitbake to start to 25 seconds The following changes since commit db92bc23880794be77373b0f2d8c26279dcecb84: bitbake: toaster: replace ETA with % of tasks done (2015-09-08 23:54:15 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib bavery/submit/ed/20150908_increase-waiting-time-bitbake http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=bavery/submit/ed/20150908_increase-waiting-time-bitbake Ed Bartosh (1): toaster: increase waiting time lib/toaster/bldcontrol/localhostbecontroller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- 1.9.1 ^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/1] toaster: increase waiting time 2015-09-09 2:39 [PATCH 0/1] increase waiting time for bitbake brian avery @ 2015-09-09 2:39 ` brian avery 2015-09-09 2:39 ` Brian Avery 0 siblings, 1 reply; 3+ messages in thread From: brian avery @ 2015-09-09 2:39 UTC (permalink / raw) To: bitbake-devel From: Ed Bartosh <ed.bartosh@linux.intel.com> Increased waiting time for toasterUI from 10 to 25 seconds. Bitbake takes longer time to start, so toaster should wait longer. [YOCTO #8240] Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: brian avery <avery.brian@gmail.com> --- lib/toaster/bldcontrol/localhostbecontroller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/toaster/bldcontrol/localhostbecontroller.py b/lib/toaster/bldcontrol/localhostbecontroller.py index 231a7d3..a9909b8 100644 --- a/lib/toaster/bldcontrol/localhostbecontroller.py +++ b/lib/toaster/bldcontrol/localhostbecontroller.py @@ -140,7 +140,7 @@ class LocalhostBEController(BuildEnvironmentController): retries = 0 started = False - while not started and retries < 10: + while not started and retries < 50: started = _toaster_ui_started(toaster_ui_log_filepath, toaster_ui_log_filelength) import time logger.debug("localhostbecontroller: Waiting bitbake server to start") @@ -150,7 +150,7 @@ class LocalhostBEController(BuildEnvironmentController): if not started: toaster_ui_log = open(os.path.join(self.be.builddir, "toaster_ui.log"), "r").read() toaster_server_log = open(os.path.join(self.be.builddir, "toaster_server.log"), "r").read() - raise BuildSetupException("localhostbecontroller: Bitbake server did not start in 5 seconds, aborting (Error: '%s' '%s')" % (toaster_ui_log, toaster_server_log)) + raise BuildSetupException("localhostbecontroller: Bitbake server did not start in 25 seconds, aborting (Error: '%s' '%s')" % (toaster_ui_log, toaster_server_log)) logger.debug("localhostbecontroller: Started bitbake server") -- 1.9.1 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/1] toaster: increase waiting time 2015-09-09 2:39 ` [PATCH 1/1] toaster: increase waiting time brian avery @ 2015-09-09 2:39 ` Brian Avery 0 siblings, 0 replies; 3+ messages in thread From: Brian Avery @ 2015-09-09 2:39 UTC (permalink / raw) To: bitbake-devel submitted upstream. -b On Tue, Sep 8, 2015 at 7:39 PM, brian avery <avery.brian@gmail.com> wrote: > From: Ed Bartosh <ed.bartosh@linux.intel.com> > > Increased waiting time for toasterUI from 10 to 25 seconds. Bitbake > takes longer time to start, so toaster should wait longer. > > [YOCTO #8240] > > Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> > Signed-off-by: brian avery <avery.brian@gmail.com> > --- > lib/toaster/bldcontrol/localhostbecontroller.py | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/lib/toaster/bldcontrol/localhostbecontroller.py b/lib/toaster/bldcontrol/localhostbecontroller.py > index 231a7d3..a9909b8 100644 > --- a/lib/toaster/bldcontrol/localhostbecontroller.py > +++ b/lib/toaster/bldcontrol/localhostbecontroller.py > @@ -140,7 +140,7 @@ class LocalhostBEController(BuildEnvironmentController): > > retries = 0 > started = False > - while not started and retries < 10: > + while not started and retries < 50: > started = _toaster_ui_started(toaster_ui_log_filepath, toaster_ui_log_filelength) > import time > logger.debug("localhostbecontroller: Waiting bitbake server to start") > @@ -150,7 +150,7 @@ class LocalhostBEController(BuildEnvironmentController): > if not started: > toaster_ui_log = open(os.path.join(self.be.builddir, "toaster_ui.log"), "r").read() > toaster_server_log = open(os.path.join(self.be.builddir, "toaster_server.log"), "r").read() > - raise BuildSetupException("localhostbecontroller: Bitbake server did not start in 5 seconds, aborting (Error: '%s' '%s')" % (toaster_ui_log, toaster_server_log)) > + raise BuildSetupException("localhostbecontroller: Bitbake server did not start in 25 seconds, aborting (Error: '%s' '%s')" % (toaster_ui_log, toaster_server_log)) > > logger.debug("localhostbecontroller: Started bitbake server") > > -- > 1.9.1 > ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-09-09 2:39 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-09-09 2:39 [PATCH 0/1] increase waiting time for bitbake brian avery 2015-09-09 2:39 ` [PATCH 1/1] toaster: increase waiting time brian avery 2015-09-09 2:39 ` Brian Avery
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.