diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-03-02 22:47:44 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-07 17:23:04 +0000 |
commit | 3322fa76706dcafbaf3329abe2fafb950b8b6fa0 (patch) | |
tree | a6d78e10651b0fa85de58d05f447984047148a48 /bitbake/lib/bb/ui/toasterui.py | |
parent | 621cbc86c9f29742c9b17b44122b1fd71a777c56 (diff) | |
download | poky-3322fa76706dcafbaf3329abe2fafb950b8b6fa0.tar.gz |
bitbake: toasterui: fix warning 'Unknown event'
Continue after processing BuildStarted event to fix
WARNING: Unknown event: <bb.event.BuildStarted object at 0x2554150>
(Bitbake rev: 12f1fb8c9b70fea0c9145f881bcceb8af32df6af)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: brian avery <avery.brian@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui/toasterui.py')
-rw-r--r-- | bitbake/lib/bb/ui/toasterui.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/toasterui.py b/bitbake/lib/bb/ui/toasterui.py index 728803d624..eee8d14cf1 100644 --- a/bitbake/lib/bb/ui/toasterui.py +++ b/bitbake/lib/bb/ui/toasterui.py | |||
@@ -244,6 +244,7 @@ def main(server, eventHandler, params): | |||
244 | build_log, build_log_file_path = _open_build_log(log_dir) | 244 | build_log, build_log_file_path = _open_build_log(log_dir) |
245 | 245 | ||
246 | buildinfohelper.store_started_build(event, build_log_file_path) | 246 | buildinfohelper.store_started_build(event, build_log_file_path) |
247 | continue | ||
247 | 248 | ||
248 | if isinstance(event, (bb.build.TaskStarted, bb.build.TaskSucceeded, bb.build.TaskFailedSilent)): | 249 | if isinstance(event, (bb.build.TaskStarted, bb.build.TaskSucceeded, bb.build.TaskFailedSilent)): |
249 | buildinfohelper.update_and_store_task(event) | 250 | buildinfohelper.update_and_store_task(event) |