From 2b3bd34f9b1f6db9651918532ff5a68de13a93b4 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 26 Aug 2020 11:27:09 +0100 Subject: bitbake: server/process: Fix typo in code causing tracebacks (Bitbake rev: 14caa3d4e5615252b9453162183980044d896d2f) Signed-off-by: Richard Purdie --- bitbake/lib/bb/server/process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake') diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py index 973bc45251..4d3d1a4308 100644 --- a/bitbake/lib/bb/server/process.py +++ b/bitbake/lib/bb/server/process.py @@ -270,7 +270,7 @@ class ProcessServer(): lock = None while not lock and i < 30: time.sleep(0.1) - _, lock = bb.utils.lockfile(lockfile, shared=False, retry=False, block=False) + lock = bb.utils.lockfile(lockfile, shared=False, retry=False, block=False) i += 1 if lock: # We hold the lock so we can remove the file (hide stale pid data) -- cgit v1.2.3-54-g00ecf