We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5182136 commit 92baaf6Copy full SHA for 92baaf6
tests/integration/handle.py
@@ -1,4 +1,4 @@
1
-import requests
+import urllib3
2
3
from datadog_lambda.metric import lambda_metric
4
from datadog_lambda.wrapper import datadog_lambda_wrapper
@@ -26,7 +26,7 @@ def handle(event, context):
26
)
27
28
# Make HTTP calls to test ddtrace instrumentation
29
- requests.get("https://datadoghq.com")
+ urllib3.PoolManager().request("GET", "https://datadoghq.com")
30
31
return {
32
"statusCode": 200,
0 commit comments