sslv3 alert handshake failure #3214
-
Hi! I've encountered an error lately. It happened once and it seems to come from a lower layer. But I'd like some feedback before I create an issue. Here is the stack trace:
It happened during a request to another one of our servers. We perform this kind of request pretty often without any issues. This error happened only once. I have the feeling that this error should be mapped to another higher-level exception, either in httpx or httpcore. Here is my environment:
What do you think? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 9 replies
-
Yes. Looks to me like we should include and map In order to resolve this. |
Beta Was this translation helpful? Give feedback.
-
Hello! So this made it to httpcore 1.0.6, and it's currently breaking the test suite of elastic-transport-python that has been supporting HTTPX for a few months now. I find it a bit surprising, as all the other libraries we support don't do this:
(And in all cases, we also catch
|
Beta Was this translation helpful? Give feedback.
Yes. Looks to me like we should include and map
SSLError
->httpcore.ConnectError
...https://github.com/encode/httpcore/blob/c96fdf7d31c3ab983f4eec4ef7a25cd81edc7ac9/httpcore/_backends/anyio.py#L63-L67
In order to resolve this.