* [PATCH] utils.py: Fix lockfile retry handling
@ 2011-11-08 17:49 Richard Purdie
0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2011-11-08 17:49 UTC (permalink / raw)
To: bitbake-devel
The lockfile retry parameter is expected to return immediately after
attempting to take the lock. There was a bug in the logic which this
patch fixed to ensure it does that.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
diff --git a/lib/bb/utils.py b/lib/bb/utils.py
index 1f55407..f905702 100644
--- a/lib/bb/utils.py
+++ b/lib/bb/utils.py
@@ -443,7 +443,7 @@ def lockfile(name, shared=False, retry=True):
return lf
lf.close()
except Exception:
- continue
+ pass
if not retry:
return None
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2011-11-08 17:55 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-08 17:49 [PATCH] utils.py: Fix lockfile retry handling Richard Purdie
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.