mirror of
https://git.yoctoproject.org/poky
synced 2026-03-16 04:09:39 +01:00
bitbake: server/process: Fix typo in code causing tracebacks
(Bitbake rev: 14caa3d4e5615252b9453162183980044d896d2f) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user