Merge "Use IPOpt and PortOpt"

This commit is contained in:
Jenkins 2016-03-25 07:43:35 +00:00 committed by Gerrit Code Review
commit 670459e236

View File

@ -45,12 +45,12 @@ auth_opts = [
]
api_opts = [
cfg.StrOpt('host_ip',
default="0.0.0.0",
help='Host serving the API.'),
cfg.IntOpt('port',
default=8888,
help='Host port serving the API.'),
cfg.IPOpt('host_ip',
default="0.0.0.0",
help='Host serving the API.'),
cfg.PortOpt('port',
default=8888,
help='Host port serving the API.'),
cfg.BoolOpt('pecan_debug',
default=False,
help='Toggle Pecan Debug Middleware.'),