Config: no need to set default=None

By default oslo.cfg sets the default value as None. There is no
need to explicitly do this.

TrivialFix

Change-Id: I8d47b8815947c1c1e22e49822ffec0b8874d4487
This commit is contained in:
ChangBo Guo(gcb) 2016-06-28 15:23:04 +08:00
parent a758dff5aa
commit ffda52200e
2 changed files with 0 additions and 4 deletions

View File

@ -41,14 +41,11 @@ opts = [
'multi_cloud is enabled. At least one endpoint needs '
'to be specified.')),
cfg.StrOpt('cert_file',
default=None,
help=_('Optional PEM-formatted certificate chain file.')),
cfg.StrOpt('key_file',
default=None,
help=_('Optional PEM-formatted file that contains the '
'private key.')),
cfg.StrOpt('ca_file',
default=None,
help=_('Optional CA cert file to use in SSL connections.')),
cfg.BoolOpt('insecure',
default=False,

View File

@ -68,7 +68,6 @@ IntegrationTestGroup = [
default=False,
help="Set to True if using self-signed SSL certificates."),
cfg.StrOpt('ca_file',
default=None,
help="CA certificate to pass for servers that have "
"https endpoint."),
cfg.IntOpt('build_interval',