remove default=None for config options

In the cfg module default=None is set as the default value.

Change-Id: I2f4691c5692dd6c5715ca0af7077e78a1d884b7f
Closes-bug: #1323975
This commit is contained in:
Shuquan Huang 2015-11-08 10:49:28 +08:00
parent 4945b446b0
commit 542b3b45f8
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ OSCLIENTS_OPTS = [
cfg.BoolOpt("https_insecure", default=False,
help="Use SSL for all OpenStack API interfaces",
deprecated_for_removal=True),
cfg.StrOpt("https_cacert", default=None,
cfg.StrOpt("https_cacert",
help="Path to CA server certificate for SSL",
deprecated_for_removal=True)
]