diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-09-12 16:27:53 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-09-12 16:27:53 +0000 |
| commit | ead54c8ccd3f2ed1c5848680839f50245f66e7bc (patch) | |
| tree | 2f6b1e303910685d567b2fd1fdcf6a83d0541451 /nova/compute | |
| parent | f5ad3bced3788fea89a4a25a29053d51aeb7a3b2 (diff) | |
| parent | b006e6bcb4b58039663b5ee0d0b007cf42245e49 (diff) | |
Merge "libvirt: Fix live block migration"
Diffstat (limited to 'nova/compute')
| -rw-r--r-- | nova/compute/api.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nova/compute/api.py b/nova/compute/api.py index 95ad4b7d0..a9ab17a13 100644 --- a/nova/compute/api.py +++ b/nova/compute/api.py @@ -1938,8 +1938,9 @@ class API(base.Base): def live_migrate(self, context, instance, block_migration, disk_over_commit, host): """Migrate a server lively to a new host.""" - LOG.debug(_("Going to try to live migrate instance"), - instance=instance) + LOG.debug(_("Going to try to live migrate instance to %s"), + host, instance=instance) + self.scheduler_rpcapi.live_migration(context, block_migration, disk_over_commit, instance, host) |
