Skip to content

Commit

Permalink
Merge pull request #656 from umccr/fix-ora-compression-manager
Browse files Browse the repository at this point in the history
fix-ora-compression-manager
  • Loading branch information
alexiswl authored Nov 6, 2024
2 parents f024a59 + dd5e301 commit 08fef6d
Show file tree
Hide file tree
Showing 4 changed files with 483 additions and 41 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ export class OraCompressionIcav2PipelineManagerStack extends cdk.Stack {
ICAV2_ACCESS_TOKEN_SECRET_ID: icav2AccessTokenSecretObj.secretName,
},
timeout: Duration.seconds(60),
memorySize: 1024,
});
// Give the lambda function access to the secret
icav2AccessTokenSecretObj.grantRead(setMergeSizesLambdaObj.currentVersion);
Expand Down Expand Up @@ -270,7 +271,7 @@ export class OraCompressionIcav2PipelineManagerStack extends cdk.Stack {
detailType: [props.detailType],
detail: {
workflowName: [{ 'equals-ignore-case': props.workflowName }],
state: [{ 'equals-ignore-case': 'SUCCEEDED' }],
status: [{ 'equals-ignore-case': 'SUCCEEDED' }],
},
},
}
Expand Down
Loading

0 comments on commit 08fef6d

Please sign in to comment.