[oe-commits] [bitbake] 07/09: runqueue: Recompute holdoff tasks from scratch

git at git.openembedded.org git at git.openembedded.org
Wed Aug 14 14:37:27 UTC 2019


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

rpurdie pushed a commit to branch master-next
in repository bitbake.

commit 030b9f2b3ce6ed40e79304eb0ffee6c6613f43be
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Wed Aug 14 00:27:09 2019 +0100

    runqueue: Recompute holdoff tasks from scratch
    
    The changed_setscene variable here is just odd and not needed. Worse,
    it could prevent some tasks from being removed from the holdoff tasks
    list. The list is being rebuilt and should work as intended just from
    the other data, this is a leftover from previous versions of the code
    as far as I can tell.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/runqueue.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index a1e3285..eb8e342 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -2237,7 +2237,7 @@ class RunQueueExecute:
             self.update_holdofftasks()
 
     def update_holdofftasks(self):
-        self.holdoff_tasks = set(self.changed_setscene)
+        self.holdoff_tasks = set()
 
         for tid in self.rqdata.runq_setscene_tids:
             if tid not in self.scenequeue_covered and tid not in self.scenequeue_notcovered:

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


More information about the Openembedded-commits mailing list