Skip to content

Commit 4283e48

Browse files
committed
cleanup
1 parent 14d281c commit 4283e48

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

integration-tests/lib/stacks/base-python-stack.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ export class BasePythonStack extends cdk.Stack {
2121
DD_SERVICE: pythonFunctionName,
2222
DD_TRACE_ENABLED: 'true',
2323
DD_LAMBDA_HANDLER: 'lambda_function.handler',
24-
DD_LOG_LEVEL: 'debug',
2524
DD_TRACE_AGENT_URL: 'http://127.0.0.1:8126',
2625
DD_COLD_START_TRACING: 'true',
2726
DD_MIN_COLD_START_DURATION: '0',

integration-tests/lib/util.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ export const extensionLayerArn = process.env.EXTENSION_LAYER_ARN!;
99

1010
export const node20LayerArn = 'arn:aws:lambda:us-east-1:464622532012:layer:Datadog-Node20-x:130';
1111
export const python313LayerArn = 'arn:aws:lambda:us-east-1:464622532012:layer:Datadog-Python313-ARM:117';
12-
export const pythonLayerArn = 'arn:aws:lambda:us-east-1:425362996713:layer:John-Datadog-Python312-ARM:20';
1312

1413
export const defaultDatadogEnvVariables = {
1514
DD_API_KEY_SECRET_ARN: datadogSecretArn,
@@ -61,11 +60,3 @@ export const getPython313Layer = (scope: Construct) => {
6160
python313LayerArn
6261
);
6362
};
64-
65-
export const getPythonLayer = (scope: Construct) => {
66-
return LayerVersion.fromLayerVersionArn(
67-
scope,
68-
'DatadogPythonLayer',
69-
pythonLayerArn
70-
);
71-
};

0 commit comments

Comments
 (0)