Skip to content

Commit

Permalink
fix(core): increase lambda timeout for X509Certificate* constructs (#476
Browse files Browse the repository at this point in the history
)
  • Loading branch information
jusiskin authored Jun 17, 2021
1 parent 18a8098 commit 7b33b21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/aws-rfdk/lib/core/lib/x509-certificate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ abstract class X509CertificateBase extends Construct {
runtime: Runtime.NODEJS_12_X,
layers: [ openSslLayer ],
handler: props.lambdaHandler,
timeout: Duration.seconds(30),
timeout: Duration.seconds(90),
logRetention: RetentionDays.ONE_WEEK,
});
this.database.grantReadWriteData(this.lambdaFunc);
Expand Down

0 comments on commit 7b33b21

Please sign in to comment.