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
1 changed files with 1 additions and 1 deletions

View File

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