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 52471f9 commit f209059Copy full SHA for f209059
instrumentation/opentelemetry-instrumentation-httpx/tests/test_httpx_integration.py
@@ -1223,7 +1223,7 @@ def create_client(
1223
transport: typing.Optional[SyncOpenTelemetryTransport] = None,
1224
**kwargs,
1225
):
1226
- return httpx.Client(**kwargs)
+ return httpx.Client(transport=transport, **kwargs)
1227
1228
def perform_request(
1229
self,
@@ -1273,7 +1273,7 @@ def create_client(
1273
transport: typing.Optional[AsyncOpenTelemetryTransport] = None,
1274
1275
1276
- return httpx.AsyncClient(**kwargs)
+ return httpx.AsyncClient(transport=transport, **kwargs)
1277
1278
1279
0 commit comments