summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--openstack/common/lockutils.py1
-rw-r--r--tests/unit/test_lockutils.py2
2 files changed, 0 insertions, 3 deletions
diff --git a/openstack/common/lockutils.py b/openstack/common/lockutils.py
index 00becb0..ef42b9b 100644
--- a/openstack/common/lockutils.py
+++ b/openstack/common/lockutils.py
@@ -207,7 +207,6 @@ def synchronized(name, lock_file_prefix, external=False, lock_path=None):
local_lock_path = tempfile.mkdtemp()
if not os.path.exists(local_lock_path):
- cleanup_dir = True
fileutils.ensure_tree(local_lock_path)
# NOTE(mikal): the lock name cannot contain directory
diff --git a/tests/unit/test_lockutils.py b/tests/unit/test_lockutils.py
index ae5dca7..1230569 100644
--- a/tests/unit/test_lockutils.py
+++ b/tests/unit/test_lockutils.py
@@ -186,8 +186,6 @@ class LockTestCase(utils.BaseTestCase):
shutil.rmtree(lock_dir, ignore_errors=True)
def test_synchronized_externally_lock_dir_not_exist(self):
- self.skipTest('bug #1107950')
-
lock_dir = tempfile.mkdtemp()
os.rmdir(lock_dir)
self.config(lock_path=lock_dir)