summaryrefslogtreecommitdiffstats
path: root/nova
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-08-27 13:02:58 +0000
committerGerrit Code Review <review@openstack.org>2012-08-27 13:02:58 +0000
commit5e012d8d45935b68a5ce5d50ed043d4bb8066cf8 (patch)
treedcf1e36f112e2eb77848592fa101b7ade528f564 /nova
parent454ca8c2f853c2984bdfbcb5ed68d951f2af7107 (diff)
parent33acd68b7c1112c43a6ba61bb10df760bd581d56 (diff)
downloadnova-5e012d8d45935b68a5ce5d50ed043d4bb8066cf8.tar.gz
nova-5e012d8d45935b68a5ce5d50ed043d4bb8066cf8.tar.xz
nova-5e012d8d45935b68a5ce5d50ed043d4bb8066cf8.zip
Merge "Fix typo in call in cinder.API unreserve_volume"
Diffstat (limited to 'nova')
-rw-r--r--nova/volume/cinder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/volume/cinder.py b/nova/volume/cinder.py
index 1aa7dcd2b..ed6b3cd59 100644
--- a/nova/volume/cinder.py
+++ b/nova/volume/cinder.py
@@ -149,7 +149,7 @@ class API(base.Base):
cinderclient(context).volumes.reserve(volume['id'])
def unreserve_volume(self, context, volume):
- cinderclient(context).volumes.reserve(volume['id'])
+ cinderclient(context).volumes.unreserve(volume['id'])
def attach(self, context, volume, instance_uuid, mountpoint):
cinderclient(context).volumes.attach(volume['id'],