bitbake: runqueue: Fix sceneQueueEvent to use the correct hashes

The runqueue should be using the "realtask" ID to lookup the task
hash, not the "task" ID. This patch resolves corruption issues where
incorrect task hashes were displayed within toaster.

(Bitbake rev: 84be1a27f89d1bf63c21f06d831df0a66a5db860)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2014-03-25 14:13:50 +00:00
parent 41ed4123a6
commit 0e58578ae5
1 changed files with 1 additions and 1 deletions

View File

@ -2020,7 +2020,7 @@ class sceneQueueEvent(runQueueEvent):
self.taskstring = rq.rqdata.get_user_idstring(realtask, "_setscene")
self.taskname = rq.rqdata.get_task_name(realtask) + "_setscene"
self.taskfile = rq.rqdata.get_task_file(realtask)
self.taskhash = rq.rqdata.get_task_hash(task)
self.taskhash = rq.rqdata.get_task_hash(realtask)
class runQueueTaskStarted(runQueueEvent):
"""