summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2015-10-05 10:43:17 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-10-11 05:23:20 +0100
commitcd4137e13af6964858640b78aa7fe6f1612be251 (patch)
treecfce4b92ee10738be876e926b0117dc5b287ae93
parent3e63abc6977bd5ef52ccb4d3757536bd564dfd34 (diff)
downloadbitbake-cd4137e13af6964858640b78aa7fe6f1612be251.tar.gz
toaster: ignore ReachableStamps event
Added ReachableStamps event to the list of known events to ignore. This should stop toaster throwing error message: ERROR: Unknown event: <bb.event.ReachableStamps> Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Elliot Smith <elliot.smith@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/ui/toasterui.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/bb/ui/toasterui.py b/lib/bb/ui/toasterui.py
index e0c278bb3..3891e639b 100644
--- a/lib/bb/ui/toasterui.py
+++ b/lib/bb/ui/toasterui.py
@@ -308,7 +308,8 @@ def main(server, eventHandler, params ):
bb.event.OperationProgress,
bb.command.CommandFailed,
bb.command.CommandExit,
- bb.command.CommandCompleted)):
+ bb.command.CommandCompleted,
+ bb.event.ReachableStamps)):
continue
if isinstance(event, bb.event.DepTreeGenerated):