Skip to content

Commit 36a4997

Browse files
authored
fix: custom resources function (#113)
* fix: custom resources function * fix: custom resources function
1 parent c0b2925 commit 36a4997

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/emd/cfn/shared/ecs_cluster.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,9 +295,9 @@ Resources:
295295
ecs_client.update_service(
296296
cluster=cluster_name,
297297
service=service_name,
298-
forceNewDeployment=True
299-
response_data = {'Message': f"Forced new deployment for {service_name}"}
298+
forceNewDeployment=True,
300299
)
300+
response_data = {'Message': f"Forced new deployment for {service_name}"}
301301
302302
cfnresponse.send(event, context, cfnresponse.SUCCESS, response_data)
303303
except Exception as e:

0 commit comments

Comments
 (0)