We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
SSLError
1 parent c96fdf7 commit e987df2Copy full SHA for e987df2
CHANGELOG.md
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6
7
+## Unreleased
8
+
9
+- Handle `SSLError` exception. (#918)
10
11
## 1.0.5 (March 27th, 2024)
12
13
- Handle `EndOfStream` exception for anyio backend. (#899)
httpcore/_backends/anyio.py
@@ -64,6 +64,7 @@ async def start_tls(
64
TimeoutError: ConnectTimeout,
65
anyio.BrokenResourceError: ConnectError,
66
anyio.EndOfStream: ConnectError,
67
+ ssl.SSLError: ConnectError,
68
}
69
with map_exceptions(exc_map):
70
try:
0 commit comments