Merge "Add oslo_config IPOpt support"

This commit is contained in:
Jenkins 2015-11-01 21:20:26 +00:00 committed by Gerrit Code Review
commit 6311d90b49
2 changed files with 4 additions and 4 deletions

View File

@ -31,8 +31,8 @@ from zaqar.transport.websocket import factory
_WS_OPTIONS = (
cfg.StrOpt('bind', default='127.0.0.1',
help='Address on which the self-hosting server will listen.'),
cfg.IPOpt('bind', default='127.0.0.1',
help='Address on which the self-hosting server will listen.'),
cfg.PortOpt('port', default=9000,
help='Port on which the self-hosting server will listen.'),

View File

@ -33,8 +33,8 @@ from zaqar.transport.wsgi import v2_0
from zaqar.transport.wsgi import version
_WSGI_OPTIONS = (
cfg.StrOpt('bind', default='127.0.0.1',
help='Address on which the self-hosting server will listen.'),
cfg.IPOpt('bind', default='127.0.0.1',
help='Address on which the self-hosting server will listen.'),
cfg.PortOpt('port', default=8888,
help='Port on which the self-hosting server will listen.'),