File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ export function readResourceConfig(filePath: string): ResourceConfig {
1616 const fileContents = fs . readFileSync ( filePath , "utf8" ) ;
1717 const data : ResourceConfig = parse ( fileContents ) ;
1818
19- // Validate the required fields
2019 if (
2120 ! data . topic_name ||
2221 ! data . bucket_name ||
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ class PluginStack extends cdk.Stack {
169169
170170 private initBatchLambda (
171171 jobQueue : batch . CfnJobQueue ,
172- jobDefinition : batch . CfnJobDefinition
172+ jobDefinition : batch . CfnJobDefinition ,
173173 ) : lambda . Function {
174174 const executionRole = new iam . Role (
175175 this ,
@@ -198,7 +198,7 @@ class PluginStack extends cdk.Stack {
198198 environment : {
199199 JOB_QUEUE : jobQueue . ref ,
200200 JOB_DEFINITION : jobDefinition . ref ,
201- JOB_NAME : `job-${ toolName } `
201+ JOB_NAME : `job-${ toolName } ` ,
202202 } ,
203203 role : executionRole ,
204204 } ) ;
You can’t perform that action at this time.
0 commit comments