Merge pull request #359 from TrueTechy/because-why-not

SSL Verification Fix
This commit is contained in:
mcarlton00 2020-08-10 09:10:44 -04:00 committed by GitHub
commit 2dff3a96ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -387,7 +387,7 @@ class API(object):
"data": data "data": data
} }
if not settings('sslverify'): if not settings('sslverify.bool'):
request_settings["verify"] = False request_settings["verify"] = False
LOG.info("Sending %s request to %s" % (method, path)) LOG.info("Sending %s request to %s" % (method, path))