From: Alexandru DAMIAN Date: Thu, 14 Nov 2013 10:53:01 +0000 (+0000) Subject: toasterui: mark failed sceneQueue tasks as failed X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9b99a417f58381bac4bda412bcfd11de50403318;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git toasterui: mark failed sceneQueue tasks as failed This patch addresses an issue where a failed sceneQueue task entry was not updated on the Fail event. As a result, it always showed the task as not-available. [YOCTO #5216] Signed-off-by: Alexandru DAMIAN Signed-off-by: Richard Purdie --- diff --git a/lib/bb/ui/buildinfohelper.py b/lib/bb/ui/buildinfohelper.py index a1a91157bb5..6b6c4f3d9ee 100644 --- a/lib/bb/ui/buildinfohelper.py +++ b/lib/bb/ui/buildinfohelper.py @@ -527,7 +527,7 @@ class BuildInfoHelper(object): task_information['disk_io'] = task_build_stats['disk_io'] del self.internal_state[identifier] - if isinstance(event, bb.runqueue.runQueueTaskFailed): + if isinstance(event, (bb.runqueue.runQueueTaskFailed, bb.runCommand.sceneQueueTaskFailed)): task_information['outcome'] = Task.OUTCOME_FAILED del self.internal_state[identifier]