summaryrefslogtreecommitdiffstats
path: root/nova/virt/vmwareapi/driver.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-01-09 04:09:45 +0000
committerGerrit Code Review <review@openstack.org>2013-01-09 04:09:45 +0000
commitb9959b180e8035a0654313be3d6cded2da1d4894 (patch)
treeba1ac3bb47d570ef4b631dc344e31ce5be1c5c81 /nova/virt/vmwareapi/driver.py
parentddb2400047d0afd8bc8e408ac3e9034b4c625952 (diff)
parente6cae13dd21f03948a28088d45be678f6a0e5c4e (diff)
downloadnova-b9959b180e8035a0654313be3d6cded2da1d4894.tar.gz
nova-b9959b180e8035a0654313be3d6cded2da1d4894.tar.xz
nova-b9959b180e8035a0654313be3d6cded2da1d4894.zip
Merge "attach/detach_volume() take instance as a parameter"
Diffstat (limited to 'nova/virt/vmwareapi/driver.py')
-rw-r--r--nova/virt/vmwareapi/driver.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/virt/vmwareapi/driver.py b/nova/virt/vmwareapi/driver.py
index ce8005861..ff6291fe5 100644
--- a/nova/virt/vmwareapi/driver.py
+++ b/nova/virt/vmwareapi/driver.py
@@ -179,11 +179,11 @@ class VMWareESXDriver(driver.ComputeDriver):
'host': None
}
- def attach_volume(self, connection_info, instance_name, mountpoint):
+ def attach_volume(self, connection_info, instance, mountpoint):
"""Attach volume storage to VM instance."""
pass
- def detach_volume(self, connection_info, instance_name, mountpoint):
+ def detach_volume(self, connection_info, instance, mountpoint):
"""Detach volume storage to VM instance."""
pass