aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/common
diff options
context:
space:
mode:
authorShobhi Jain <shobhi.jain@intel.com>2018-04-06 11:41:54 +0100
committerEmma Foley <emma.l.foley@intel.com>2018-06-27 17:17:51 +0100
commitcfccf4a09a8c692702f44763b7597d4c236116f3 (patch)
tree77c3ddf37e56725561b004cca10f583642589f83 /yardstick/common
parent40358fe73d7816d90b551b8eed0c2660899acb3e (diff)
Replace cinder get_volume_id with shade client.
Function get_volume_id now uses shade client. JIRA: YARDSTICK-891 Change-Id: I45ae40982a64f677dbbdeb6c9510a0ec9ac973f1 Signed-off-by: Shobhi Jain <shobhi.jain@intel.com> (cherry picked from commit be197a6197e803b6334f2ccf72f561245ef7aac7)
Diffstat (limited to 'yardstick/common')
-rw-r--r--yardstick/common/openstack_utils.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/yardstick/common/openstack_utils.py b/yardstick/common/openstack_utils.py
index 68cf0a521..14c34e2b4 100644
--- a/yardstick/common/openstack_utils.py
+++ b/yardstick/common/openstack_utils.py
@@ -769,9 +769,8 @@ def list_images(shade_client=None):
# *********************************************
# CINDER
# *********************************************
-def get_volume_id(volume_name): # pragma: no cover
- volumes = get_cinder_client().volumes.list()
- return next((v.id for v in volumes if v.name == volume_name), None)
+def get_volume_id(shade_client, volume_name):
+ return shade_client.get_volume_id(volume_name)
def create_volume(cinder_client, volume_name, volume_size,