File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
.tools/test/stacks/plugin/typescript Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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" ) ,
You can’t perform that action at this time.
0 commit comments