From 98ced066649f72c59a07944996755503edf9908c Mon Sep 17 00:00:00 2001 From: Chris Behrens Date: Thu, 8 Mar 2012 10:33:13 -0800 Subject: [PATCH] Deprecate carrot rpc code Fixes bug 950153 carrot rpc code is not being maintained anymore and is buggy. Use kombu, instead. Change-Id: Ifcd6d8997adb4fc07fce45486f0663d57954be1d --- nova/rpc/impl_carrot.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nova/rpc/impl_carrot.py b/nova/rpc/impl_carrot.py index ea10cb346f34..cc124c25d146 100644 --- a/nova/rpc/impl_carrot.py +++ b/nova/rpc/impl_carrot.py @@ -46,11 +46,14 @@ from nova import local from nova import log as logging from nova.rpc import common as rpc_common from nova.testing import fake +from nova import utils FLAGS = flags.FLAGS LOG = logging.getLogger(__name__) +@utils.deprecated('Use of carrot will be removed in a future release. ' + 'Use kombu, instead.') class Connection(carrot_connection.BrokerConnection, rpc_common.Connection): """Connection instance object."""