From a8dbfa2739d2a2247964cd7c589e4dd6974a2cba Mon Sep 17 00:00:00 2001 From: Joshua Watt Date: Thu, 30 May 2024 10:09:10 -0600 Subject: [PATCH] sstatesig: Drop BB_HASHSERVE_MAX_PARALLEL Drops support for this variable since bitbake no longer supports parallel queries to the hash equivalence server (From OE-Core rev: b0769794ca858baa6e814e81b14cf542c33d3a09) Signed-off-by: Joshua Watt Signed-off-by: Richard Purdie --- meta/lib/oe/sstatesig.py | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py index a46e5502ab..db3c409216 100644 --- a/meta/lib/oe/sstatesig.py +++ b/meta/lib/oe/sstatesig.py @@ -327,7 +327,6 @@ class SignatureGeneratorOEEquivHash(SignatureGeneratorOEBasicHashMixIn, bb.sigge self.method = data.getVar('SSTATE_HASHEQUIV_METHOD') if not self.method: bb.fatal("OEEquivHash requires SSTATE_HASHEQUIV_METHOD to be set") - self.max_parallel = int(data.getVar('BB_HASHSERVE_MAX_PARALLEL') or 1) self.username = data.getVar("BB_HASHSERVE_USERNAME") self.password = data.getVar("BB_HASHSERVE_PASSWORD") if not self.username or not self.password: