From d40387bcc462b206e993372fb519541124a44392 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 09fd05591f20d69ba13bf2ebdae69a6c70e0cbd7 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 658935b6bbf7c78c4a13c17fb4c0866c8042a720 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, },