crate.client.exceptions.ConnectionError: Server not available, exception:
HTTPSConnectionPool(host='localhost', port=65534): Max retries exceeded with url: /
(Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED]
certificate verify failed: Missing Authority Key Identifier (_ssl.c:1028)')))
.... and also provides a solution:
Problem
urllib3 introduced a slightly breaking change for Python 3.13, which started tripping the test suite on nightly builds.
Details
@jvanasco explains the situation...
Solution
.... and also provides a solution:
Thanks!
References