Skip to content

Commit c489a16

Browse files
committed
rebase incorrecrt
1 parent 95eb1ec commit c489a16

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.tools/test/stacks/plugin/typescript/plugin_stack.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ class PluginStack extends cdk.Stack {
116116
securityGroupIds: [sg.securityGroupId],
117117
maxvCpus: 1,
118118
},
119-
}
119+
},
120120
);
121121

122122
const containerImageUri = `${this.adminAccountId}.dkr.ecr.us-east-1.amazonaws.com/${toolName}:latest`;
@@ -141,7 +141,7 @@ class PluginStack extends cdk.Stack {
141141
},
142142
],
143143
ephemeralStorage: {
144-
sizeInGib: this.batchStorage,
144+
sizeInGiB: this.batchStorage,
145145
},
146146
environment: variableConfigJson,
147147
},
@@ -314,7 +314,7 @@ class PluginStack extends cdk.Stack {
314314

315315
// Define the Lambda function.
316316
const lambdaFunction = new lambda.Function(this, "BatchJobCompleteLambda", {
317-
runtime: lambda.Runtime.PYTHON_3_8,
317+
runtime: lambda.Runtime.PYTHON_3_9,
318318
handler: "export_logs.handler",
319319
role: executionRole,
320320
code: lambda.Code.fromAsset("lambda"),

0 commit comments

Comments
 (0)