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 b283268 commit 143ba6aCopy full SHA for 143ba6a
instrumentation/opentelemetry-instrumentation-httpx/tests/test_httpx_integration.py
@@ -1020,7 +1020,9 @@ def setUp(self):
1020
HTTPXClientInstrumentor().instrument_client(self.client)
1021
1022
def tearDown(self):
1023
- HTTPXClientInstrumentor().uninstrument_client(self.client)
+ # TODO: uninstrument() is required in order to avoid leaks for instrumentations
1024
+ # but we should audit the single tests and fix any missing uninstrumentation
1025
+ HTTPXClientInstrumentor().uninstrument()
1026
1027
def create_proxy_mounts(self):
1028
return {
0 commit comments