File tree Expand file tree Collapse file tree 3 files changed +5
-8
lines changed
build/docker/python_lambda/function Expand file tree Collapse file tree 3 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 11import json
22
3- from utils ._context ._scenarios .aws_lambda import LambdaScenario
43from utils ._context .header_tag_vars import VALID_CONFIGS , INVALID_CONFIGS , CONFIG_WILDCARD
54from utils .proxy .ports import ProxyPorts
65from utils .tools import update_environ_with_local_env
76
7+ from .aws_lambda import LambdaScenario
88from .core import Scenario , scenario_groups
99from .default import DefaultScenario
1010from .endtoend import DockerScenario , EndToEndScenario
Original file line number Diff line number Diff 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__ (
Original file line number Diff line number Diff line change 1- aws-lambda-powertools
1+ aws-lambda-powertools == 3.17.0
You can’t perform that action at this time.
0 commit comments