Skip to content

Commit 7f6729e

Browse files
authored
stop testing with httpx-0.12, as it doesn't use httpcore (#1141)
this breaks distributed tracing, and it would be too much work getting it to work on legacy libraries.
1 parent d478a9a commit 7f6729e

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

.ci/.jenkins_exclude.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,6 @@ exclude:
226226
FRAMEWORK: aioredis-newest
227227
- PYTHON_VERSION: python-3.10-rc # getting "loop argument must agree with lock" error
228228
FRAMEWORK: aioredis-newest
229-
- PYTHON_VERSION: python-3.10-rc
230-
FRAMEWORK: httpx-0.12
231229
# aiomysql
232230
- PYTHON_VERSION: pypy-3
233231
FRAMEWORK: aiomysql-newest

.ci/.jenkins_framework_full.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ FRAMEWORK:
7474
- pymemcache-3.0
7575
- pymemcache-newest
7676
- graphene-2
77-
- httpx-0.12
7877
- httpx-0.13
7978
- httpx-0.14
8079
- httpx-newest

elasticapm/instrumentation/packages/asyncio/httpcore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class HTTPCoreAsyncInstrumentation(AsyncAbstractInstrumentedModule):
4949

5050
instrument_list = [
5151
("httpcore._async.connection", "AsyncHTTPConnection.request"), # < httpcore 0.11
52-
("httpcore._async.connection", "AsyncHTTPConnection.arequest"), # httcore 0.11 - 0.12
52+
("httpcore._async.connection", "AsyncHTTPConnection.arequest"), # httpcore 0.11 - 0.12
5353
("httpcore._async.connection", "AsyncHTTPConnection.handle_async_request"), # >= httpcore 0.13
5454
]
5555

0 commit comments

Comments
 (0)