-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
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
SubjectAltNameWarning #2686
Comments
specific to python2.6 and older? |
Already filtering some warnings here: I'll try adding some more filters. |
The traceback shows two warnings, Ignoring From https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings: InsecurePlatformWarningThis happens on Python 2 platforms that have an outdated ssl module. These older ssl modules can cause some insecure requests to succeed where they should fail and secure requests to fail where they should succeed. Follow the pyOpenSSL guide to resolve this warning. SNIMissingWarningThis happens on Python 2 versions older than 2.7.9. These older versions lack SNI support. This can cause servers to present a certificate that the client thinks is invalid. Follow the pyOpenSSL guide to resolve this warning. |
We appear to be getting deprecation warnings for the common name field.
See also:
The text was updated successfully, but these errors were encountered: