Merge "Config: no need to set default=None"

This commit is contained in:
Jenkins 2016-07-08 15:17:28 +00:00 committed by Gerrit Code Review
commit 340280b7b8
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ _DRIVER_GROUP = 'drivers'
_SIGNED_URL_OPTIONS = (
cfg.StrOpt('secret_key', default=None,
cfg.StrOpt('secret_key',
help=('Secret key used to encrypt pre-signed URLs.')),
)

View File

@ -37,7 +37,7 @@ _WS_OPTIONS = (
cfg.PortOpt('port', default=9000,
help='Port on which the self-hosting server will listen.'),
cfg.PortOpt('external-port', default=None,
cfg.PortOpt('external-port',
help='Port on which the service is provided to the user.'),
)