Make rpc_backend default to 'rabbit'

'rabbit' is the canonical name for the driver and 'kombu' is just an
alias, so let's set the default to the canonical.

Change-Id: If163ece6793d2a7d6e99d0c8df1745bbcf9a36e6
This commit is contained in:
Mark McLoughlin 2013-10-18 14:54:26 +01:00
parent 14310fa45f
commit 3a2a4d9831
1 changed files with 2 additions and 2 deletions

View File

@ -43,8 +43,8 @@ _transport_opts = [
'full configuration. If not set, we fall back to the '
'rpc_backend option and driver specific configuration.'),
cfg.StrOpt('rpc_backend',
default='kombu',
help='The messaging driver to use, defaults to kombu. Other '
default='rabbit',
help='The messaging driver to use, defaults to rabbit. Other '
'drivers include qpid and zmq.'),
cfg.StrOpt('control_exchange',
default='openstack',