Hi Alex, The commit is an internal commit to our repos, not a commit in a Poky repo. -Dave
commit 6a390954d1e6b92d82fea86b8041d6c8489c25ff Author: Dave Lerner <[email protected]> Date: Tue Jun 17 14:34:48 2014 -0500 Show in the log that ToasterUi is ready to receive events. Issue: TA53702 It was observed that a sequence in a script such as bitbake --server-only .. bitbake --observe-only .. bitbake <some target> could generate events from the server to the observer before the observer was ready to read the events, and the early events of builds were consistently dropped. Adding a "ready" note in the log allows the script to scan for that message before proceeding to building a target. Upstream Status: Pending Signed-off-by: Dave Lerner <[email protected]> diff --git a/lib/bb/ui/toasterui.py b/lib/bb/ui/toasterui.py index b1c80cc..5f87a9d 100644 --- a/lib/bb/ui/toasterui.py +++ b/lib/bb/ui/toasterui.py @@ -91,6 +91,7 @@ def main(server, eventHandler, params ): errors = 0 warnings = 0 taskfailures = [] + first = True buildinfohelper = BuildInfoHelper(server, build_history_enabled) @@ -98,6 +99,9 @@ def main(server, eventHandler, params ): while True: try: event = eventHandler.waitEvent(0.25) + if first: + first = False + logger.info("ToasterUI waiting for events") if event is None: if main.shutdown > 0: -- _______________________________________________ toaster mailing list [email protected] https://lists.yoctoproject.org/listinfo/toaster
