Skip to content

Commit 74e00c9

Browse files
authored
Merge pull request #127 from cloudcomponents/patch_125
fix: Property name
2 parents 375ecd9 + 8f3baf0 commit 74e00c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cdk-blue-green-container-deployment/src/ecs-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export class EcsService extends Construct implements IConnectable, IEcsService {
120120
TargetGroupArn: prodTargetGroup.targetGroupArn,
121121
ContainerPort: containerPort,
122122
SchedulingStrategy: SchedulingStrategy.REPLICA,
123-
HealthCheckGracePeriod: healthCheckGracePeriod.toSeconds(),
123+
HealthCheckGracePeriodSeconds: healthCheckGracePeriod.toSeconds(),
124124
DeploymentConfiguration: {
125125
maximumPercent: props.maxHealthyPercent ?? 200,
126126
minimumHealthyPercent: props.minHealthyPercent ?? 50,

0 commit comments

Comments
 (0)