Browse Source

server/process: Fix typo in code causing tracebacks

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Richard Purdie 3 years ago
parent
commit
14caa3d4e5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/bb/server/process.py

+ 1 - 1
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)