You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 18, 2019. It is now read-only.
requests.exceptions.SSLError: HTTPSConnectionPool(host='my-service.url', port=443): Max retries exceeded with url: /docs/ (Caused by SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:645)'),))
According to this issue in the requests repo, environment settings need to be explicitely added to the session.send call in coreapi/transports/http.py:
Hello,
Using v2.3.3, I can't make requests to an SSL endpoint:
According to this issue in the requests repo, environment settings need to be explicitely added to the
session.sendcall incoreapi/transports/http.py:This fixes the issue for me and I'm able to make requests to my service.
I have opened #153.