From 57b56e67404748aeaed4ebcb89c4d0af93532684 Mon Sep 17 00:00:00 2001 From: fweddi Date: Thu, 27 Aug 2026 15:20:41 +0100 Subject: [PATCH 1/3] Roll variant headline out to 5% of users The end goal is a 50/50 test, we are reaching this threshold in stages to avoid overloading the cache --- ab-testing/config/abTests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ab-testing/config/abTests.ts b/ab-testing/config/abTests.ts index d4b61b3b9ba..d4c22ec7434 100644 --- a/ab-testing/config/abTests.ts +++ b/ab-testing/config/abTests.ts @@ -205,7 +205,7 @@ const ABTests: ABTest[] = [ status: "ON", expirationDate: "2036-08-12", type: "server", - audienceSize: 0 / 100, + audienceSize: 5 / 95, groups: ["a", "b"], shouldForceMetricsCollection: false, }, From e8f8be61c56bd884619a3426c281af797f4666e0 Mon Sep 17 00:00:00 2001 From: fweddi Date: Tue, 1 Sep 2026 10:50:16 +0100 Subject: [PATCH 2/3] Amend to 25/100 (ie 25%) rollout --- ab-testing/config/abTests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ab-testing/config/abTests.ts b/ab-testing/config/abTests.ts index d4c22ec7434..41c01ee3021 100644 --- a/ab-testing/config/abTests.ts +++ b/ab-testing/config/abTests.ts @@ -205,7 +205,7 @@ const ABTests: ABTest[] = [ status: "ON", expirationDate: "2036-08-12", type: "server", - audienceSize: 5 / 95, + audienceSize: 25 / 100, groups: ["a", "b"], shouldForceMetricsCollection: false, }, From 35394833bd64cdcab4ceda9986680e12885a9c05 Mon Sep 17 00:00:00 2001 From: fweddi Date: Tue, 1 Sep 2026 10:51:25 +0100 Subject: [PATCH 3/3] Reserve last alphabetical audience space --- ab-testing/config/abTests.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ab-testing/config/abTests.ts b/ab-testing/config/abTests.ts index 41c01ee3021..e30a09f23ad 100644 --- a/ab-testing/config/abTests.ts +++ b/ab-testing/config/abTests.ts @@ -206,6 +206,7 @@ const ABTests: ABTest[] = [ expirationDate: "2036-08-12", type: "server", audienceSize: 25 / 100, + audienceSpace: "E", groups: ["a", "b"], shouldForceMetricsCollection: false, },