Fix help strings
Use sentence style capitalization on help strings. Change-Id: Ib3a8393eb0f3244d2ee431e71d3632195903b708
This commit is contained in:
parent
d3f3fd7759
commit
a5c7d6a2df
@ -67,33 +67,33 @@ rabbit_opts = [
|
|||||||
help='RabbitMQ HA cluster host:port pairs'),
|
help='RabbitMQ HA cluster host:port pairs'),
|
||||||
cfg.BoolOpt('rabbit_use_ssl',
|
cfg.BoolOpt('rabbit_use_ssl',
|
||||||
default=False,
|
default=False,
|
||||||
help='connect over SSL for RabbitMQ'),
|
help='Connect over SSL for RabbitMQ'),
|
||||||
cfg.StrOpt('rabbit_userid',
|
cfg.StrOpt('rabbit_userid',
|
||||||
default='guest',
|
default='guest',
|
||||||
help='the RabbitMQ userid'),
|
help='The RabbitMQ userid'),
|
||||||
cfg.StrOpt('rabbit_password',
|
cfg.StrOpt('rabbit_password',
|
||||||
default='guest',
|
default='guest',
|
||||||
help='the RabbitMQ password',
|
help='The RabbitMQ password',
|
||||||
secret=True),
|
secret=True),
|
||||||
cfg.StrOpt('rabbit_virtual_host',
|
cfg.StrOpt('rabbit_virtual_host',
|
||||||
default='/',
|
default='/',
|
||||||
help='the RabbitMQ virtual host'),
|
help='The RabbitMQ virtual host'),
|
||||||
cfg.IntOpt('rabbit_retry_interval',
|
cfg.IntOpt('rabbit_retry_interval',
|
||||||
default=1,
|
default=1,
|
||||||
help='how frequently to retry connecting with RabbitMQ'),
|
help='How frequently to retry connecting with RabbitMQ'),
|
||||||
cfg.IntOpt('rabbit_retry_backoff',
|
cfg.IntOpt('rabbit_retry_backoff',
|
||||||
default=2,
|
default=2,
|
||||||
help='how long to backoff for between retries when connecting '
|
help='How long to backoff for between retries when connecting '
|
||||||
'to RabbitMQ'),
|
'to RabbitMQ'),
|
||||||
cfg.IntOpt('rabbit_max_retries',
|
cfg.IntOpt('rabbit_max_retries',
|
||||||
default=0,
|
default=0,
|
||||||
help='maximum retries with trying to connect to RabbitMQ '
|
help='Maximum number of RabbitMQ connection retries. '
|
||||||
'(the default of 0 implies an infinite retry count)'),
|
'Default is 0 (infinite retry count)'),
|
||||||
cfg.BoolOpt('rabbit_ha_queues',
|
cfg.BoolOpt('rabbit_ha_queues',
|
||||||
default=False,
|
default=False,
|
||||||
help='use H/A queues in RabbitMQ (x-ha-policy: all).'
|
help='Use HA queues in RabbitMQ (x-ha-policy: all). '
|
||||||
'You need to wipe RabbitMQ database when '
|
'If you change this option, you must wipe the '
|
||||||
'changing this option.'),
|
'RabbitMQ database.'),
|
||||||
|
|
||||||
# FIXME(markmc): this was toplevel in openstack.common.rpc
|
# FIXME(markmc): this was toplevel in openstack.common.rpc
|
||||||
cfg.BoolOpt('fake_rabbit',
|
cfg.BoolOpt('fake_rabbit',
|
||||||
|
Loading…
Reference in New Issue
Block a user