We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
httplib2
Update: I don't see httplib2 anywhere in KC's code except for requirements files (checked in https://github.com/kobotoolbox/kobocat/tree/kobokitten-py3-django2-new-settings) —jnm
Original description:
As identified in #158, the currently-installed version of httplib2 results in certificate verification errors such as the following on apparently-acceptable sites like www.openfn.org:
SSLHandshakeError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590)
Without upgrading httplib2 or resorting to using disable_ssl_certificate_validation=True, we can easily substitute in the already-installed requests library, which is not subject to these verification errors, and drop a dependency in the process.
disable_ssl_certificate_validation=True
requests
The text was updated successfully, but these errors were encountered:
Closes #158. Part of #346.
a708cc7
fa377be
Stashing work in progress for removing httplib2 use. #346
1217397
noliveleger
Successfully merging a pull request may close this issue.
Update: I don't see
httplib2
anywhere in KC's code except for requirements files (checked in https://github.com/kobotoolbox/kobocat/tree/kobokitten-py3-django2-new-settings) —jnmOriginal description:
As identified in #158, the currently-installed version of
httplib2
results in certificate verification errors such as the following on apparently-acceptable sites like www.openfn.org:Without upgrading
httplib2
or resorting to usingdisable_ssl_certificate_validation=True
, we can easily substitute in the already-installedrequests
library, which is not subject to these verification errors, and drop a dependency in the process.The text was updated successfully, but these errors were encountered: