From 8803a2c66e9680ecb35f08139f7c6654aba799a5 Mon Sep 17 00:00:00 2001 From: Jeff Peeler Date: Sat, 26 May 2012 14:16:19 -0400 Subject: [PATCH] Add missing flags to enable working with RabbitMQ Note: rpc_backend=heat.rpc.impl_kombu must be set in both heat-api.conf and heat-engine.conf. Change-Id: Ia7f5af8805240381f28ecae1efc0a677155f898e Signed-off-by: Jeff Peeler --- heat/common/config.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/heat/common/config.py b/heat/common/config.py index dd8a74b5..7e86ad50 100644 --- a/heat/common/config.py +++ b/heat/common/config.py @@ -126,7 +126,12 @@ rpc_opts = [ cfg.StrOpt('control_exchange', default='heat-engine', help='the main RabbitMQ exchange to connect to'), - + cfg.BoolOpt('rabbit_durable_queues', + default=False, + help='use durable queues in RabbitMQ'), + cfg.BoolOpt('fake_rabbit', + default=False, + help='If passed, use a fake RabbitMQ provider'), ] -- 2.45.2