[oe-commits] [openembedded-core] branch master-next updated: sstatesig: Drop incorrect test within locked sigs handling

git at git.openembedded.org git at git.openembedded.org
Sun Mar 1 14:44:17 UTC 2020


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

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

The following commit(s) were added to refs/heads/master-next by this push:
     new dce631e  sstatesig: Drop incorrect test within locked sigs handling
dce631e is described below

commit dce631edee6e59c51f467854a1b2d5628afe5baf
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Sun Mar 1 14:39:46 2020 +0000

    sstatesig: Drop incorrect test within locked sigs handling
    
    I believe this condition was added in error and is resulting in the intermittent
    locked sigantures failure on the autobuilder, depending on the state of the unihash
    caches compared to the current recipe signatures.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oe/sstatesig.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py
index 4fc75a9..ea7b6dc 100644
--- a/meta/lib/oe/sstatesig.py
+++ b/meta/lib/oe/sstatesig.py
@@ -195,7 +195,7 @@ class SignatureGeneratorOEBasicHashMixIn(object):
                 self._internal = False
                 #bb.warn("Using %s %s %s" % (recipename, task, h))
 
-                if h != h_locked and h_locked != unihash:
+                if h != h_locked:
                     self.mismatch_msgs.append('The %s:%s sig is computed to be %s, but the sig is locked to %s in %s'
                                           % (recipename, task, h, h_locked, var))
 

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


More information about the Openembedded-commits mailing list