[PATCH] runqueue: Fix pending_hash_index not including taskname
| Newsgroups | org.openembedded.lists.bitbake-devel |
|---|---|
| Message-ID | <[email protected]> |
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: """ -- 2.43.0