From: Ed Bartosh Date: Thu, 3 Mar 2016 06:47:44 +0000 (-0800) Subject: toasterui: fix warning 'Unknown event' X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=12f1fb8c9b70fea0c9145f881bcceb8af32df6af;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 --- 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)