We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f220877 commit 3dde95eCopy full SHA for 3dde95e
elastic_transport/_node/_http_httpx.py
@@ -159,6 +159,7 @@ async def perform_request( # type: ignore[override]
159
elif isinstance(e, ssl.SSLError):
160
err = TlsError(str(e), errors=(e,))
161
# Detect SSL errors for httpx v0.28.0+
162
+ # Needed until https://github.com/encode/httpx/issues/3350 is fixed
163
elif isinstance(e, httpx.ConnectError) and e.__cause__:
164
context = e.__cause__.__context__
165
if isinstance(context, ssl.SSLError):
setup.py
@@ -65,8 +65,6 @@
65
"requests",
66
"aiohttp",
67
"httpx",
68
- # https://github.com/encode/httpx/discussions/3214#discussioncomment-10830925
69
- "httpcore<1.0.6",
70
"respx",
71
"opentelemetry-api",
72
"opentelemetry-sdk",
0 commit comments