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
I am working on a framework so I am trying to use SSLContext instead of inject_into_ssl per the documentation and the user guide.
I am using requests. I have found instructions on how to inject SSLContext into requests at https://stackoverflow.com/a/78265028. In particular the code snippet:
Thank you @sethmlarson. I just tested #164 and it does not fix this issue.
But I do not find this result surprising, since #164 patches inject_into_ssl, which was already working for me. My problem is when trying to inject SSLContext into requests. (Please see description above for details)
I am working on a framework so I am trying to use
SSLContext
instead ofinject_into_ssl
per the documentation and the user guide.I am using
requests
. I have found instructions on how to injectSSLContext
into requests at https://stackoverflow.com/a/78265028. In particular the code snippet:This code works well in Linux and Windows. But on Mac I get the error:
I am certain my custom root certificate is properly installed in Mac, because if I use
inject_into_ssl
instead ofSSLContext
:then everything works.
The text was updated successfully, but these errors were encountered: