diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-08-26 11:27:09 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-08-26 11:28:54 +0100 |
commit | 2b3bd34f9b1f6db9651918532ff5a68de13a93b4 (patch) | |
tree | ddf9b01329e587bfc32893565de8c86fe6c902c2 /bitbake/lib/bb/server/process.py | |
parent | 4965496c4a9f105eb1f9ae7e478e7ec96ee1df7b (diff) | |
download | poky-2b3bd34f9b1f6db9651918532ff5a68de13a93b4.tar.gz |
bitbake: server/process: Fix typo in code causing tracebacks
(Bitbake rev: 14caa3d4e5615252b9453162183980044d896d2f)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/server/process.py')
-rw-r--r-- | bitbake/lib/bb/server/process.py | 2 |
1 files changed, 1 insertions, 1 deletions
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(): | |||
270 | lock = None | 270 | lock = None |
271 | while not lock and i < 30: | 271 | while not lock and i < 30: |
272 | time.sleep(0.1) | 272 | time.sleep(0.1) |
273 | _, lock = bb.utils.lockfile(lockfile, shared=False, retry=False, block=False) | 273 | lock = bb.utils.lockfile(lockfile, shared=False, retry=False, block=False) |
274 | i += 1 | 274 | i += 1 |
275 | if lock: | 275 | if lock: |
276 | # We hold the lock so we can remove the file (hide stale pid data) | 276 | # We hold the lock so we can remove the file (hide stale pid data) |