Skip to content

Commit 864b162

Browse files
authored
Merge pull request #142 from ChannelFinder/fix-verify-ssl-env-read
Use getboolean for verifyssl
2 parents 99e8fda + 7fa63ff commit 864b162

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/recceiver/cfstore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def loads(cls, conf: ConfigAdapter) -> "CFConfig":
8282
base_url=conf.get("baseUrl"),
8383
cf_username=conf.get("cfUsername"),
8484
cf_password=conf.get("cfPassword"),
85-
verify_ssl=conf.get("verifySSL"),
85+
verify_ssl=conf.getboolean("verifySSL"),
8686
)
8787

8888

0 commit comments

Comments
 (0)