Merge "Use HostAddressOpt for opts that accept IP and hostnames"

This commit is contained in:
Jenkins
2017-04-18 10:14:22 +00:00
committed by Gerrit Code Review

View File

@@ -53,18 +53,19 @@ core_opts = [
cfg.BoolOpt('allow_sorting', default=False,
help=_("Allow the usage of the sorting")),
cfg.StrOpt('pagination_max_limit', default="-1",
help=_("The maximum number of items returned in a single "
"response, value was 'infinite' or negative integer "
"means no limit")),
cfg.StrOpt('host', default=utils.get_hostname(),
help=_("The hostname Tacker is running on")),
help=_("The maximum number of items returned "
"in a single response, value was 'infinite' "
"or negative integer means no limit")),
cfg.HostAddressOpt('host', default=utils.get_hostname(),
help=_("The hostname Tacker is running on")),
]
core_cli_opts = [
cfg.StrOpt('state_path',
default='/var/lib/tacker',
help=_("Where to store Tacker state files. "
"This directory must be writable by the agent.")),
"This directory must be writable by "
"the agent.")),
]
logging.register_options(cfg.CONF)