From 79bfa21f58e593ba6f4105ce3c944543d68164e0 Mon Sep 17 00:00:00 2001 From: Sonia Hussain Date: Mon, 19 Aug 2024 12:58:09 +0100 Subject: [PATCH] Ramp up popular tasks AB test Increased the AB test %'s so that variants A, B, and C are seen by 10% of users respectively, while the remaining 70% see the Z variant. Updated the cookie duration for the AB test to 2 days. --- dictionaries.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dictionaries.yaml b/dictionaries.yaml index ac03a8e..e1d0e46 100644 --- a/dictionaries.yaml +++ b/dictionaries.yaml @@ -5,7 +5,7 @@ active_ab_tests: ab_test_expiries: Example: 86400 BankHolidaysTest: 86400 - PopularTasks: 43200 # 1/2 day + PopularTasks: 172800 # 2 days # AB test percentages example_percentages: A: 50 @@ -14,7 +14,7 @@ bankholidaystest_percentages: A: 99 B: 1 populartasks_percentages: - A: 0 - B: 0 - C: 0 - Z: 100 + A: 10 + B: 10 + C: 10 + Z: 70