mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
bitbake: runqueue: set has 'add', not 'append' method
Discovered via pylint (Bitbake rev: 1a353cda696b7f59386ad2d78a57005b90a37da4) 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>
This commit is contained in:
committed by
Richard Purdie
parent
0a55156ca0
commit
9ddd559091
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user