We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92baaf6 commit 992e388Copy full SHA for 992e388
tests/integration/handle.py
@@ -1,4 +1,4 @@
1
-import urllib3
+import requests
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
- urllib3.PoolManager().request("GET", "https://datadoghq.com")
+ requests.get("https://datadoghq.com")
30
31
return {
32
"statusCode": 200,
0 commit comments