From 5c220b4bdf65de42617cd701fbc4a6b1873e2f47 Mon Sep 17 00:00:00 2001 From: Puyodead1 Date: Sat, 23 Dec 2023 17:11:14 -0500 Subject: [PATCH] update pomelo experiment --- src/api/routes/experiments.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/api/routes/experiments.ts b/src/api/routes/experiments.ts index 24fd3ef1e..019ee2c58 100644 --- a/src/api/routes/experiments.ts +++ b/src/api/routes/experiments.ts @@ -23,7 +23,6 @@ import { Request, Response, Router } from "express"; const router = Router(); router.get("/", route({}), (req: Request, res: Response) => { - // TODO: const { uniqueUsernames } = Config.get().general; const data: Experiments = { @@ -34,8 +33,7 @@ router.get("/", route({}), (req: Request, res: Response) => { // this enables the pomelo/unique usernames UI in the official clients if (uniqueUsernames) { // hash, revision, bucket, override, population, hash_result, as_mode - // bucket 4 is used by the official client, and enables live checking and suggestions, 3 is only live checking - data.assignments.push([2476969328, 0, 4, -1, 0, 9267, 0, 0]); + data.assignments.push([268309827, 0, 1, -1, 7, 8062, 0, 0]); } res.send(data); });