From 14caa3d4e5615252b9453162183980044d896d2f Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 26 Aug 2020 11:27:09 +0100 Subject: server/process: Fix typo in code causing tracebacks Signed-off-by: Richard Purdie --- lib/bb/server/process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/bb/server') diff --git a/lib/bb/server/process.py b/lib/bb/server/process.py index 973bc4525..4d3d1a430 100644 --- a/lib/bb/server/process.py +++ b/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 1.2.3-korg