diff options
| author | Vishvananda Ishaya <vishvananda@gmail.com> | 2012-10-23 11:53:34 -0700 |
|---|---|---|
| committer | Vishvananda Ishaya <vishvananda@gmail.com> | 2012-10-23 11:53:34 -0700 |
| commit | 83a40dfc715d6f46cf15ecce310d00b8930c65eb (patch) | |
| tree | cbd2dfa0b7ab4e99c741d4b5f8217a85f5cb0922 | |
| parent | d9c35809dc98823a5050f062192b2453f36d1cfd (diff) | |
| download | nova-83a40dfc715d6f46cf15ecce310d00b8930c65eb.tar.gz nova-83a40dfc715d6f46cf15ecce310d00b8930c65eb.tar.xz nova-83a40dfc715d6f46cf15ecce310d00b8930c65eb.zip | |
Remove duplicate methods from network/rpcapi.py
Change-Id: Ief1792f258d23f19bd4de115f7903b0b687db0e3
| -rw-r--r-- | nova/network/rpcapi.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/nova/network/rpcapi.py b/nova/network/rpcapi.py index 43c17acb5..f06cf1790 100644 --- a/nova/network/rpcapi.py +++ b/nova/network/rpcapi.py @@ -208,14 +208,6 @@ class NetworkAPI(rpc_proxy.RpcProxy): return self.call(ctxt, self.make_msg('setup_networks_on_host', instance_id=instance_id, host=host, teardown=teardown)) - def lease_fixed_ip(self, ctxt, host, address): - self.cast(ctxt, self.make_msg('lease_fixed_ip', address=address), - topic=rpc.queue_get_for(ctxt, self.topic, host)) - - def release_fixed_ip(self, ctxt, host, address): - self.cast(ctxt, self.make_msg('release_fixed_ip', address=address), - topic=rpc.queue_get_for(ctxt, self.topic, host)) - def set_network_host(self, ctxt, network_ref): network_ref_p = jsonutils.to_primitive(network_ref) return self.call(ctxt, self.make_msg('set_network_host', |
