From 12f1fb8c9b70fea0c9145f881bcceb8af32df6af Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Wed, 2 Mar 2016 22:47:44 -0800 Subject: [PATCH] toasterui: fix warning 'Unknown event' Continue after processing BuildStarted event to fix WARNING: Unknown event: Signed-off-by: Ed Bartosh Signed-off-by: brian avery Signed-off-by: Richard Purdie --- lib/bb/ui/toasterui.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/bb/ui/toasterui.py b/lib/bb/ui/toasterui.py index 728803d6246..eee8d14cf13 100644 --- a/lib/bb/ui/toasterui.py +++ b/lib/bb/ui/toasterui.py @@ -244,6 +244,7 @@ def main(server, eventHandler, params): build_log, build_log_file_path = _open_build_log(log_dir) buildinfohelper.store_started_build(event, build_log_file_path) + continue if isinstance(event, (bb.build.TaskStarted, bb.build.TaskSucceeded, bb.build.TaskFailedSilent)): buildinfohelper.update_and_store_task(event) -- 2.47.3