Skip to content

Commit 90f59e3

Browse files
committed
fix minor tweaks
1 parent 8262ce4 commit 90f59e3

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

utils/_context/_scenarios/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import json
22

3-
from utils._context._scenarios.aws_lambda import LambdaScenario
43
from utils._context.header_tag_vars import VALID_CONFIGS, INVALID_CONFIGS, CONFIG_WILDCARD
54
from utils.proxy.ports import ProxyPorts
65
from utils.tools import update_environ_with_local_env
76

7+
from .aws_lambda import LambdaScenario
88
from .core import Scenario, scenario_groups
99
from .default import DefaultScenario
1010
from .endtoend import DockerScenario, EndToEndScenario

utils/_context/containers.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1065,21 +1065,18 @@ def __init__(
10651065
volumes = volumes or {}
10661066

10671067
environment["DD_PROXY_HTTPS"] = f"http://proxy:{ProxyPorts.agent}"
1068-
environment["DD_PROXY_HTTP"] = f"http://proxy:{ProxyPorts.agent}"
1069-
environment["DD_APM_NON_LOCAL_TRAFFIC"] = (
1070-
"true" # Required for the extension to receive traces from outside the container
1071-
)
1068+
environment["DD_LOG_LEVEL"] = "debug"
10721069
volumes.update(
10731070
{
10741071
"./utils/build/docker/agent/ca-certificates.crt": {
10751072
"bind": "/etc/ssl/certs/ca-certificates.crt",
10761073
"mode": "ro",
10771074
},
10781075
"./utils/build/docker/agent/datadog.yaml": {
1079-
"bind": "/etc/datadog-agent/datadog.yaml",
1076+
"bind": "/var/task/datadog.yaml",
10801077
"mode": "ro",
10811078
},
1082-
},
1079+
}
10831080
)
10841081

10851082
super().__init__(
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
aws-lambda-powertools
1+
aws-lambda-powertools==3.17.0

0 commit comments

Comments
 (0)