Re: [bitbake-devel] [PATCH] runqueue: Fix pending_hash_index not including taskname
Richard Purdie <[email protected]>
| Newsgroups | org.openembedded.lists.bitbake-devel |
|---|---|
| Message-ID | <80f16c343f0b695970c6c93218e67eabd9648914.camel@linuxfoundation.org> |
On Fri, 2026-08-21 at 16:49 -0400, Chris Laplante via lists.openembedded.org wrote: > From: Chris Laplante <[email protected]> > > The intention was probably not to use the literal string, "taskname" > > Signed-off-by: Chris Laplante <[email protected]> > --- > 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 a4689e134..544081053 100644 > --- a/lib/bb/runqueue.py > +++ b/lib/bb/runqueue.py > @@ -84,7 +84,7 @@ def pending_hash_index(tid, rqdata): > (mc, fn, taskname, taskfn) = split_tid_mcfn(tid) > pn = rqdata.dataCaches[mc].pkg_fn[taskfn] > h = rqdata.runtaskentries[tid].unihash > - return pn + ":" + "taskname" + h > + return pn + ":" + taskname + h > > class RunQueueStats: > """ Yes, that looks like a fun bug. Was that breaking multiconfig? Cheers, Richard