[oe-commits] [openembedded-core] 10/11: sstatesig: Drop incorrect test within locked sigs handling

git at git.openembedded.org git at git.openembedded.org
Sun Mar 1 17:51:30 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.

commit 93d6ec9904b867dc6fc137291b0245d4ca77dd54
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