[oe-commits] [bitbake] 02/02: runqueue: Ensure data is handled correctly

git at git.openembedded.org git at git.openembedded.org
Thu Aug 15 12:36:51 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository bitbake.

commit a5e084a266f63c2fd370122327615e49beaeb94e
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Thu Aug 15 13:28:31 2019 +0100

    runqueue: Ensure data is handled correctly
    
    This doesn't appear to have ill effects right now but there is a correctness
    issue which this so fix it.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/runqueue.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index 5303174..4e64ddf 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -2306,6 +2306,8 @@ class RunQueueExecute:
                 self.scenequeue_notcovered.remove(tid)
             if tid in self.scenequeue_covered:
                 self.scenequeue_covered.remove(tid)
+            if tid in self.scenequeue_notneeded:
+                self.scenequeue_notneeded.remove(tid)
 
             (mc, fn, taskname, taskfn) = split_tid_mcfn(tid)
             self.sqdata.stamps[tid] = bb.build.stampfile(taskname + "_setscene", self.rqdata.dataCaches[mc], taskfn, noextra=True)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list