diff options
| author | Russell Bryant <rbryant@redhat.com> | 2012-07-25 16:16:06 -0400 |
|---|---|---|
| committer | Russell Bryant <rbryant@redhat.com> | 2012-07-25 20:44:20 -0400 |
| commit | 2fed9559934fb44eed394f12aba8c8ff0dcdb60c (patch) | |
| tree | 2740dbdc9026363797b1430fd267ad0eaaa587ce | |
| parent | 7c489cbdf45cdc9c4fb6d1ecfed52fe8702ed52f (diff) | |
| download | nova-2fed9559934fb44eed394f12aba8c8ff0dcdb60c.tar.gz nova-2fed9559934fb44eed394f12aba8c8ff0dcdb60c.tar.xz nova-2fed9559934fb44eed394f12aba8c8ff0dcdb60c.zip | |
Remove unused methods from compute rpcapi.
Remove some deprecated methods from the compute rpcapi. These methods
remain in the compute manager code, but there is no need to have them
here in the client side code since they aren't used and we don't want
any new code trying to use them.
Change-Id: I0ae2cd3f25339d91fbd27f8a157b3f95e2acbc6f
| -rw-r--r-- | nova/compute/rpcapi.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/nova/compute/rpcapi.py b/nova/compute/rpcapi.py index 9644781f4..19c72bd08 100644 --- a/nova/compute/rpcapi.py +++ b/nova/compute/rpcapi.py @@ -127,18 +127,6 @@ class ComputeAPI(nova.openstack.common.rpc.proxy.RpcProxy): topic=_compute_topic(self.topic, ctxt, None, instance), version='1.11') - def check_shared_storage_test_file(self, ctxt, filename, host): - raise rpc_common.RPCException(message=_('Deprecated from version 1.2')) - - def cleanup_shared_storage_test_file(self, ctxt, filename, host): - raise rpc_common.RPCException(message=_('Deprecated from version 1.2')) - - def compare_cpu(self, ctxt, cpu_info, host): - raise rpc_common.RPCException(message=_('Deprecated from version 1.2')) - - def create_shared_storage_test_file(self, ctxt, host): - raise rpc_common.RPCException(message=_('Deprecated from version 1.2')) - def confirm_resize(self, ctxt, instance, migration_id, host, cast=True): rpc_method = self.cast if cast else self.call |
