From 707487bc2bde71bc759a7f07f963a349cb751cd2 Mon Sep 17 00:00:00 2001 From: Ivan Kolodyazhny Date: Mon, 22 Jun 2015 21:34:50 +0300 Subject: [PATCH] Fix typo in ServiceType map ServiceType maps volumev2 service to cinder. This patch fixes it to map to cinderv2 constant Change-Id: I5d9c43f48048cb3c518a39588edb4a0f6fac14f3 Related-Bug: #1467589 --- rally/consts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rally/consts.py b/rally/consts.py index 5b22ae1c..d0f79659 100644 --- a/rally/consts.py +++ b/rally/consts.py @@ -137,7 +137,7 @@ class _ServiceType(utils.ImmutableMixin, utils.EnumMixin): self.COMPUTEV21: _Service.NOVAV21, self.COMPUTEV3: _Service.NOVAV3, self.VOLUME: _Service.CINDER, - self.VOLUMEV2: _Service.CINDER, + self.VOLUMEV2: _Service.CINDERV2, self.SHARE: _Service.MANILA, self.EC2: _Service.EC2, self.IMAGE: _Service.GLANCE,