Skip to content

Commit f085b39

Browse files
Update cdk/lib/constructs/database.ts
Co-authored-by: Kazuho Cryer-Shinozuka <malaysia.cryer@gmail.com>
1 parent 908ab82 commit f085b39

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cdk/lib/constructs/database.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export class Database extends Construct implements ec2.IConnectable {
9494
// pool_timeout=30: Must be >= connect_timeout to allow Aurora Serverless v2 resume (~15s)
9595
// connect_timeout=30: Aurora Serverless v2 auto-pause resume takes ~15s (longer after 24h+ pause)
9696
// https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2-auto-pause.html
97-
const option = '?connection_limit=1&pool_timeout=30&connect_timeout=30';
97+
const option = '?connection_limit=1&connect_timeout=30';
9898
return {
9999
DATABASE_HOST: conn.host,
100100
DATABASE_NAME: databaseName,

0 commit comments

Comments
 (0)