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:
Takashi Kajinami
2025-08-12 15:03:29 +09:00
parent 74364071fe
commit a7d0b2835c
2 changed files with 7 additions and 1 deletions

View File

@@ -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.

View File

@@ -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")