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 <jpeeler@redhat.com>
This commit is contained in:
Jeff Peeler 2012-05-26 14:16:19 -04:00
parent f3913a9a3e
commit 8803a2c66e
1 changed files with 6 additions and 1 deletions

View File

@ -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'),
]