Improve help strings

Follow oslo.config conventions for consistency of help strings:
* Use sentence style capitalization.
* End entry with a "."
Fix capitalization of AMQP.

Change-Id: I0a6b170a2a7cfa539e06781f4495c4353d22e4d0
This commit is contained in:
Andreas Jaeger 2014-08-28 06:59:33 +02:00
parent 4f929c3470
commit 7c2853a92c
2 changed files with 3 additions and 3 deletions

View File

@ -39,10 +39,10 @@ amqp_opts = [
default=False,
deprecated_name='rabbit_durable_queues',
deprecated_group='DEFAULT',
help='Use durable queues in amqp.'),
help='Use durable queues in AMQP.'),
cfg.BoolOpt('amqp_auto_delete',
default=False,
help='Auto-delete queues in amqp.'),
help='Auto-delete queues in AMQP.'),
# FIXME(markmc): this was toplevel in openstack.common.rpc
cfg.IntOpt('rpc_conn_pool_size',

View File

@ -78,7 +78,7 @@ rabbit_opts = [
secret=True),
cfg.StrOpt('rabbit_login_method',
default='AMQPLAIN',
help='the RabbitMQ login method'),
help='The RabbitMQ login method.'),
cfg.StrOpt('rabbit_virtual_host',
default='/',
help='The RabbitMQ virtual host.'),