[Toaster] [review-request][PATCH] toaster: increase waiting time

Brian Avery avery.brian at gmail.com
Tue Sep 8 08:46:22 PDT 2015


Do we know why bitbake suddenly took longer to start up?  I did not
see this bug on either of my development machines.
-b

On Tue, Sep 8, 2015 at 1:50 AM, Ed Bartosh <ed.bartosh at linux.intel.com> wrote:
> 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 at linux.intel.com>
> ---
>  bitbake/lib/toaster/bldcontrol/localhostbecontroller.py | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
> index 231a7d3..a9909b8 100644
> --- a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
> +++ b/bitbake/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")
>
> --
> 2.1.4
>
> --
> _______________________________________________
> toaster mailing list
> toaster at yoctoproject.org
> https://lists.yoctoproject.org/listinfo/toaster


More information about the toaster mailing list