Fix wrong type of [drivers:message_store:swift] insecure
Closes-Bug: #2120360
Change-Id: I0b06fcc3ed5329b727f7bc0873bf7f73362c2115
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
(cherry picked from commit 7ae89fb7cc)
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
---
|
||||
fixes:
|
||||
- |
|
||||
Fixed the wrong type of ``[drivers:message_store:swift] insecure`` option.
|
||||
It was previously string (so non-empty strings were translated to True),
|
||||
but has been changed to boolean.
|
||||
@@ -25,7 +25,7 @@ uri = cfg.StrOpt(
|
||||
help="Custom URI describing the swift connection.")
|
||||
|
||||
|
||||
insecure = cfg.StrOpt(
|
||||
insecure = cfg.BoolOpt(
|
||||
"insecure", default=False,
|
||||
help="Don't check SSL certificate")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user