From 45ea8fac874232e425e89c26e0a8b85531aa8227 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Mon, 29 Apr 2024 23:49:49 -0400 Subject: [PATCH] Modify IV thread experiment --- src/experiments.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/experiments.ts b/src/experiments.ts index 0b16983..12a442c 100644 --- a/src/experiments.ts +++ b/src/experiments.ts @@ -1,10 +1,10 @@ export enum Experiment { - IV_FORCE_THREAD_UNROLL = 'IV_FORCE_THREAD_UNROLL', ELONGATOR_BY_DEFAULT = 'ELONGATOR_BY_DEFAULT', ELONGATOR_PROFILE_API = 'ELONGATOR_PROFILE_API', TWEET_DETAIL_API = 'TWEET_DETAIL_API', DISCORD_NATIVE_MULTI_IMAGE = 'DISCORD_NATIVE_MULTI_IMAGE', - TRANSCODE_GIFS = 'TRANSCODE_GIFS' + TRANSCODE_GIFS = 'TRANSCODE_GIFS', + IV_FORCE_THREAD_UNROLL = 'IV_FORCE_THREAD_UNROLL' } type ExperimentConfig = { @@ -14,11 +14,6 @@ type ExperimentConfig = { }; const Experiments: { [key in Experiment]: ExperimentConfig } = { - [Experiment.IV_FORCE_THREAD_UNROLL]: { - name: 'IV force thread unroll', - description: 'Force thread unroll for IVs', - percentage: 0.1 - }, [Experiment.ELONGATOR_BY_DEFAULT]: { name: 'Elongator by default', description: 'Enable Elongator by default (guest token lockout bypass)', @@ -43,6 +38,11 @@ const Experiments: { [key in Experiment]: ExperimentConfig } = { name: 'Transcode GIFs', description: 'Transcode GIFs for Discord, etc.', percentage: 1 + }, + [Experiment.IV_FORCE_THREAD_UNROLL]: { + name: 'IV force thread unroll', + description: 'Force thread unroll for Telegram Instant View', + percentage: 0.25 } };