Skip to content

Commit 5225c92

Browse files
committed
fix
1 parent 68a1f17 commit 5225c92

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.tools/test/stacks/config/resources.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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 ||

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
});

0 commit comments

Comments
 (0)