Skip to content

Commit

Permalink
fix: false positive in idleTimeout test for multi alb service
Browse files Browse the repository at this point in the history
  • Loading branch information
markanderstam authored Oct 24, 2023
1 parent fae21ec commit 3649432
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/aws-cdk-lib/aws-ecs-patterns/test/ec2/l3s.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -983,7 +983,7 @@ test('passes when idleTimeout is between 1 and 4000 seconds for multiAlbService'
loadBalancers: [
{
name: 'lb',
idleTimeout: Duration.seconds(400),
idleTimeout: Duration.seconds(5),
domainName: 'api.example.com',
domainZone: new PublicHostedZone(stack, 'HostedZone', { zoneName: 'example.com' }),
listeners: [
Expand All @@ -997,7 +997,7 @@ test('passes when idleTimeout is between 1 and 4000 seconds for multiAlbService'
},
{
name: 'lb2',
idleTimeout: Duration.seconds(120),
idleTimeout: Duration.seconds(500),
domainName: 'frontend.com',
domainZone: new PublicHostedZone(stack, 'HostedZone2', { zoneName: 'frontend.com' }),
listeners: [
Expand Down

0 comments on commit 3649432

Please sign in to comment.