[bitbake-devel] Richard Purdie : utils.py: Fix lockfile retry handling

git at git.openembedded.org git at git.openembedded.org
Thu Nov 10 11:40:38 UTC 2011


Module: bitbake.git
Branch: master
Commit: f421ef819f00ac659504d9af41bcc8323422ff8c
URL:    http://git.openembedded.org/?p=bitbake.git&a=commit;h=f421ef819f00ac659504d9af41bcc8323422ff8c

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
Date:   Tue Nov  8 17:49:32 2011 +0000

utils.py: Fix lockfile retry handling

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 at linuxfoundation.org>

---

 lib/bb/utils.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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
 





More information about the bitbake-devel mailing list