diff options
| author | Trey Morris <trey.morris@rackspace.com> | 2010-12-21 20:06:53 +0000 |
|---|---|---|
| committer | Trey Morris <trey.morris@rackspace.com> | 2010-12-21 20:06:53 +0000 |
| commit | f9e2bbdf1182f54d69f6005eb7c39007eddbd3cd (patch) | |
| tree | f9a4603e97335655524eecdbab2a583aed30ed63 /nova/virt | |
| parent | aded4faba96e4de88f0294604927ef824cb249be (diff) | |
| download | nova-f9e2bbdf1182f54d69f6005eb7c39007eddbd3cd.tar.gz nova-f9e2bbdf1182f54d69f6005eb7c39007eddbd3cd.tar.xz nova-f9e2bbdf1182f54d69f6005eb7c39007eddbd3cd.zip | |
correct xenapi resume call
Diffstat (limited to 'nova/virt')
| -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 eb6743a7a..3ec131600 100644 --- a/nova/virt/xenapi/vmops.py +++ b/nova/virt/xenapi/vmops.py @@ -159,7 +159,7 @@ class VMOps(object): vm = VMHelper.lookup(self._session, instance_name) if vm is None: raise Exception("resume: instance not present %s" % instance_name) - task = self._session.call_xenapi('Async.VM.resume', vm) + task = self._session.call_xenapi('Async.VM.resume', vm, False, True) self._wait_with_callback(task, callback) def get_info(self, instance_id): |
