From 2fed9559934fb44eed394f12aba8c8ff0dcdb60c Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Wed, 25 Jul 2012 16:16:06 -0400 Subject: 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 --- nova/compute/rpcapi.py | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'nova') 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 -- cgit