summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.zuul.yaml2
-rw-r--r--oslo_concurrency/lockutils.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/.zuul.yaml b/.zuul.yaml
index 20a7b6a..c512f24 100644
--- a/.zuul.yaml
+++ b/.zuul.yaml
@@ -3,7 +3,7 @@
- check-requirements
- lib-forward-testing-python3
- openstack-cover-jobs
- - openstack-python3-wallaby-jobs
+ - openstack-python3-jobs
- periodic-stable-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
diff --git a/oslo_concurrency/lockutils.py b/oslo_concurrency/lockutils.py
index 1a9abe8..c75d3a3 100644
--- a/oslo_concurrency/lockutils.py
+++ b/oslo_concurrency/lockutils.py
@@ -180,7 +180,7 @@ def _get_lock_path(name, lock_file_prefix, lock_path=None):
local_lock_path = lock_path or CONF.oslo_concurrency.lock_path
if not local_lock_path:
- raise cfg.RequiredOptError('lock_path')
+ raise cfg.RequiredOptError('lock_path', 'oslo_concurrency')
return os.path.join(local_lock_path, name)