[oe-commits] [bitbake] 06/08: runqueue: Save unihashes more frequently

git at git.openembedded.org git at git.openembedded.org
Fri Sep 27 12:35:14 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository bitbake.

commit 9eee0d36870c11dd303894a6151c33a83bd3a1bc
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Thu Sep 26 14:36:46 2019 +0100

    runqueue: Save unihashes more frequently
    
    There are some runqueue code paths where the unihash cache would not be
    saved where for example only parsing or an occurred. Save the cache at the
    end of runqueue generation to ensure entries are cached.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/runqueue.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index 29bfd65..31de3ed 100644
--- a/lib/bb/runqueue.py
+++ b/lib/bb/runqueue.py
@@ -1443,6 +1443,7 @@ class RunQueue:
                 self.state = runQueueComplete
             else:
                 self.state = runQueueSceneInit
+                bb.parse.siggen.save_unitaskhashes()
 
         if self.state is runQueueSceneInit:
             self.rqdata.init_progress_reporter.next_stage()

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list