Improve consistency in servicegroup opts

* Updated header flags
* Moved opt to list
* Removed default value from text message

Implements: Blueprint centralize-config-options-newton
Change-Id: I9d82b4c69fee41307611404c3f0fe8103476068a
This commit is contained in:
Maciej Szankin 2016-07-28 13:39:39 -05:00
parent 30c554ffba
commit 138037ca9f
1 changed files with 8 additions and 15 deletions

View File

@ -1,10 +1,3 @@
# needs:fix_opt_description
# needs:check_deprecation_status
# needs:check_opt_group_and_type
# needs:fix_opt_description_indentation
# needs:fix_opt_registration_consistency
# Copyright (c) 2016 OpenStack Foundation
# All Rights Reserved.
#
@ -22,10 +15,11 @@
from oslo_config import cfg
servicegroup_driver = cfg.StrOpt('servicegroup_driver',
default='db',
choices=['db', 'mc'],
help="""
SERVICEGROUP_OPTS = [
cfg.StrOpt('servicegroup_driver',
default='db',
choices=['db', 'mc'],
help="""
This option specifies the driver to be used for the servicegroup service.
ServiceGroup API in nova enables checking status of a compute node. When a
@ -38,15 +32,14 @@ and Memcache ServiceGroup driver.
Possible Values:
* db : Database ServiceGroup driver (default)
* db : Database ServiceGroup driver
* mc : Memcache ServiceGroup driver
Related Options:
* service_down_time (maximum time since last check-in for up service)
""")
SERVICEGROUP_OPTS = [servicegroup_driver]
"""),
]
def register_opts(conf):