diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-11-02 22:57:39 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-11-02 22:57:39 +0000 |
| commit | 8a6e725501896149dea24a816e126f665b823074 (patch) | |
| tree | 4534bfa2105abda5e83bbe2bf0a43853fc8cf8ce | |
| parent | 1d641de80d14bec037181f63daabd03b39ca6ea5 (diff) | |
| parent | 9264d8a04accdd72fb7c70fe09e40eae99e1db37 (diff) | |
Merge "Fix Quantum v2 API method signatures"
| -rw-r--r-- | nova/network/quantumv2/api.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/nova/network/quantumv2/api.py b/nova/network/quantumv2/api.py index 241bb1a2d..e8d672835 100644 --- a/nova/network/quantumv2/api.py +++ b/nova/network/quantumv2/api.py @@ -508,15 +508,13 @@ class API(base.Base): fip = self._get_floating_ip_by_address(client, address) client.update_floatingip(fip['id'], {'floatingip': {'port_id': None}}) - def migrate_instance_start(self, context, instance_uuid, rxtx_factor, - project_id, source, dest, floating_addresses): + def migrate_instance_start(self, context, instance, migration): """Start to migrate the network of an instance""" # NOTE(wenjianhn): just pass to make migrate instance doesn't # raise for now. pass - def migrate_instance_finish(self, context, instance_uuid, rxtx_factor, - project_id, source, dest, floating_addresses): + def migrate_instance_finish(self, context, instance, migration): """Finish migrating the network of an instance""" # NOTE(wenjianhn): just pass to make migrate instance doesn't # raise for now. |
