diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-08-08 18:47:02 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-08-08 18:47:02 +0000 |
| commit | 09f39b542e5ea83a3a4a0217966d4767dad97a5c (patch) | |
| tree | 02b4fe5e284a439a5c7db9e4a25367cffee3611b | |
| parent | 0e6ec643c26a7355e4f5e8db7c4fce2786a9f63b (diff) | |
| parent | ccc2f23404afa5e69d3dbafb9e603b48b12d5cbc (diff) | |
Merge "Fix a bug on remove_volume_connection in compute/manager.py"
| -rw-r--r-- | nova/compute/manager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/compute/manager.py b/nova/compute/manager.py index 5ce92e548..11344830f 100644 --- a/nova/compute/manager.py +++ b/nova/compute/manager.py @@ -2223,8 +2223,8 @@ class ComputeManager(manager.SchedulerDependentManager): # NOTE(vish): We don't want to actually mark the volume # detached, or delete the bdm, just remove the # connection from this host. - self.remove_volume_connection(ctxt, instance_ref['id'], - bdm['volume_id']) + self.remove_volume_connection(ctxt, bdm['volume_id'], + instance_ref) # Releasing vlan. # (not necessary in current implementation?) |
