aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Laplante <chris.laplante@agilent.com>2023-10-20 13:33:38 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-10-23 11:39:38 +0100
commit1a353cda696b7f59386ad2d78a57005b90a37da4 (patch)
tree2f516fe90ac03c225e8d7a4efa3852622bcf8e8a
parent0487970d0e762fad021bdfb53ccbd4c75098c7dd (diff)
downloadbitbake-contrib-1a353cda696b7f59386ad2d78a57005b90a37da4.tar.gz
runqueue: set has 'add', not 'append' method
Discovered via pylint Signed-off-by: Chris Laplante <chris.laplante@agilent.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 28b9667c4..50475ea0c 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -157,7 +157,7 @@ class RunQueueScheduler(object):
(mc, fn, taskname, taskfn) = split_tid_mcfn(tid)
self.stamps[tid] = bb.parse.siggen.stampfile_mcfn(taskname, taskfn, extrainfo=False)
if tid in self.rq.runq_buildable:
- self.buildable.append(tid)
+ self.buildable.add(tid)
self.rev_prio_map = None
self.is_pressure_usable()