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
/.../urllib3/connectionpool.py:858: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
Though its "only" a warning, but we also want to verify HTTPS certificates, it would be great to remove verify=false (default true) from the requests.get call in the check_links management command.
If the environment itself doesn't provide the needed collection of Root Certificates for validating the trustworthiness of SSL certificates while verifying the identity of TLS hosts, you can use the python package certifi.
Here more information about the requests package working with certifi.
The text was updated successfully, but these errors were encountered:
Though its "only" a warning, but we also want to verify HTTPS certificates, it would be great to remove
verify=false
(default true) from therequests.get
call in the check_links management command.If the environment itself doesn't provide the needed collection of Root Certificates for validating the trustworthiness of SSL certificates while verifying the identity of TLS hosts, you can use the python package certifi.
Here more information about the requests package working with certifi.
The text was updated successfully, but these errors were encountered: