Skip to content

Commit

Permalink
set old integration tests too old behaviour
Browse files Browse the repository at this point in the history
  • Loading branch information
Fergus Dixon authored and fergusdixon committed Oct 25, 2022
1 parent b177682 commit 5aa23fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ new ApplicationLoadBalancedFargateService(stack, 'myService', {
taskImageOptions: {
image: ContainerImage.fromRegistry('amazon/amazon-ecs-sample'),
},
circuitBreaker: { rollback: true },
circuitBreaker: { rollback: true, useExplicitEcsDeploymentController: true },
});

new integ.IntegTest(app, 'circuitBreakerAlbFargateTest', {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const vpc = new ec2.Vpc(stack, 'VPC', {
new QueueProcessingFargateService(stack, 'QueueProcessingService', {
vpc,
memoryLimitMiB: 512,
circuitBreaker: { rollback: true },
circuitBreaker: { rollback: true, useExplicitEcsDeploymentController: true },
image: new ecs.AssetImage(path.join(__dirname, '..', 'sqs-reader')),
});

Expand Down

0 comments on commit 5aa23fb

Please sign in to comment.