diff options
| author | Jason Koelker <jason@koelker.net> | 2011-07-27 13:36:16 -0500 |
|---|---|---|
| committer | Jason Koelker <jason@koelker.net> | 2011-07-27 13:36:16 -0500 |
| commit | a37f5eb58d6fea4f24ac3e97173c47102ecd73b1 (patch) | |
| tree | 6eedc0b517d7c123b6b7a28e440920604330f605 | |
| parent | 0c393d704050ab43b1b970428b7740609af86c74 (diff) | |
remove unexpected parameter
| -rw-r--r-- | nova/virt/xenapi/vmops.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/virt/xenapi/vmops.py b/nova/virt/xenapi/vmops.py index e2cd2b6d5..326e31704 100644 --- a/nova/virt/xenapi/vmops.py +++ b/nova/virt/xenapi/vmops.py @@ -122,7 +122,7 @@ class VMOps(object): [dict(vdi_type='os', vdi_uuid=vdi_uuid)], network_info) if resize_instance: - self.resize_instance(instance, vdi_uuid, resize_instance) + self.resize_instance(instance, vdi_uuid) self._spawn(instance, vm_ref) def _start(self, instance, vm_ref=None): |
