Skip to content

Commit 2b46f54

Browse files
committed
feat: Route 100% of traffic for tag-page-rendering CODE to ECS
1 parent 2e7aafc commit 2b46f54

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
@@ -2840,13 +2840,13 @@ exports[`The RenderingCDKStack matches the snapshot for Tag Page Rendering CODE
28402840
"TargetGroupArn": {
28412841
"Ref": "TargetGroupTagpagerendering42E428EE",
28422842
},
2843-
"Weight": 1,
2843+
"Weight": 0,
28442844
},
28452845
{
28462846
"TargetGroupArn": {
28472847
"Ref": "EcsTargetGroupTagpagerendering06213654",
28482848
},
2849-
"Weight": 0,
2849+
"Weight": 1,
28502850
},
28512851
],
28522852
},

dotcom-rendering/cdk/lib/renderingStack.ts

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

292-
// Route all traffic to EC2
292+
// Route all traffic to ECS
293293
targetGroupWeights: {
294-
ec2: 1,
295-
ecs: 0,
294+
ec2: 0,
295+
ecs: 1,
296296
},
297297
}),
298298
});

0 commit comments

Comments
 (0)