Skip to content

Commit 37a815c

Browse files
committed
feat: Route 100% of traffic for tag-page-rendering CODE to ECS
1 parent 916bd87 commit 37a815c

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

dotcom-rendering/cdk/lib/__snapshots__/renderingStack.test.ts.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2827,13 +2827,13 @@ exports[`The RenderingCDKStack matches the snapshot for Tag Page Rendering CODE
28272827
"TargetGroupArn": {
28282828
"Ref": "TargetGroupTagpagerendering42E428EE",
28292829
},
2830-
"Weight": 1,
2830+
"Weight": 0,
28312831
},
28322832
{
28332833
"TargetGroupArn": {
28342834
"Ref": "EcsTargetGroupTagpagerendering06213654",
28352835
},
2836-
"Weight": 0,
2836+
"Weight": 1,
28372837
},
28382838
],
28392839
},

dotcom-rendering/cdk/lib/renderingStack.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -287,10 +287,10 @@ export class RenderingCDKStack extends CDKStack {
287287
},
288288
},
289289

290-
// Route all traffic to EC2
290+
// Route all traffic to ECS
291291
targetGroupWeights: {
292-
ec2: 1,
293-
ecs: 0,
292+
ec2: 0,
293+
ecs: 1,
294294
},
295295
}),
296296
});

0 commit comments

Comments
 (0)