summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-08-14 00:27:09 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-08-14 14:44:32 +0100
commit030b9f2b3ce6ed40e79304eb0ffee6c6613f43be (patch)
treed16ca69c69288251af840672e35164df9a9c8f88 /lib
parentb9b2177473c0b95a23bd519a201e1d2ba101c6c1 (diff)
downloadbitbake-030b9f2b3ce6ed40e79304eb0ffee6c6613f43be.tar.gz
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@linuxfoundation.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/bb/runqueue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index a1e328582..eb8e34276 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: