diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-09-27 16:16:55 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-30 16:52:22 +0100 |
commit | af0f6793448ed948d748705529fdf8c0f8a764e1 (patch) | |
tree | 257491373e9d48e93fded0453c8ea9bf7bb8458e /bitbake/lib | |
parent | c7b55ea170aa6e87ec38cb09677f2611170cbe68 (diff) | |
download | poky-af0f6793448ed948d748705529fdf8c0f8a764e1.tar.gz |
bitbake: toaster: fix 'Unhandled MetadataEvent' error
New MetadataEvent 'TaskArtifacts' causes this error.
Processing of this event will hopefully be implemented in future.
For now it should be enough to just skip it.
(Bitbake rev: 114a3fe3f23ef09782c5aa18f425d0d0dbdfdd35)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/ui/toasterui.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/toasterui.py b/bitbake/lib/bb/ui/toasterui.py index 569957a2ff..2bc45b6312 100644 --- a/bitbake/lib/bb/ui/toasterui.py +++ b/bitbake/lib/bb/ui/toasterui.py | |||
@@ -431,6 +431,10 @@ def main(server, eventHandler, params): | |||
431 | buildinfohelper.scan_sdk_artifacts(event) | 431 | buildinfohelper.scan_sdk_artifacts(event) |
432 | elif event.type == "SetBRBE": | 432 | elif event.type == "SetBRBE": |
433 | buildinfohelper.brbe = buildinfohelper._get_data_from_event(event) | 433 | buildinfohelper.brbe = buildinfohelper._get_data_from_event(event) |
434 | elif event.type == "TaskArtifacts": | ||
435 | # not implemented yet | ||
436 | # see https://bugzilla.yoctoproject.org/show_bug.cgi?id=10283 for details | ||
437 | pass | ||
434 | elif event.type == "OSErrorException": | 438 | elif event.type == "OSErrorException": |
435 | logger.error(event) | 439 | logger.error(event) |
436 | else: | 440 | else: |