summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Behrens <cbehrens@codestud.com>2011-08-30 21:05:43 -0700
committerChris Behrens <cbehrens@codestud.com>2011-08-30 21:05:43 -0700
commite43ffb5137ba256a21b3241b549d7c66cb7e5e04 (patch)
tree9232b2fe801c87839a729dd7e3f018fb83f232a0
parentb7c98734f8829fb4b213869bdfca6481fbeab98e (diff)
switched default to kombu per vishy
-rw-r--r--nova/rpc/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/rpc/__init__.py b/nova/rpc/__init__.py
index e29cd80e1..c0cfdd5ce 100644
--- a/nova/rpc/__init__.py
+++ b/nova/rpc/__init__.py
@@ -23,8 +23,8 @@ from nova import flags
FLAGS = flags.FLAGS
flags.DEFINE_string('rpc_backend',
- 'nova.rpc.impl_carrot',
- "The messaging module to use, defaults to carrot.")
+ 'nova.rpc.impl_kombu',
+ "The messaging module to use, defaults to kombu.")
_RPCIMPL = None