From e3db8f32a17b6bb7fdd1979c956dcc0b91e9a052 Mon Sep 17 00:00:00 2001 From: vinistock <18742907+vinistock@users.noreply.github.com> Date: Fri, 31 Jan 2025 19:09:25 +0000 Subject: [PATCH] Bump Tapioca and Launcher rollout (#3122) ### Motivation The rollout of the Tapioca add-on seems to be going smooth so far. I vote for bumping it to 50% of users. We also fixed numerous issues with launcher mode and, so far, haven't seen any _new_ issues. I propose we bump it to 10%. --- vscode/src/common.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vscode/src/common.ts b/vscode/src/common.ts index 635eac387..408e9b74f 100644 --- a/vscode/src/common.ts +++ b/vscode/src/common.ts @@ -81,8 +81,8 @@ export const SUPPORTED_LANGUAGE_IDS = ["ruby", "erb"]; // // Note: names added here should also be added to the `rubyLsp.optedOutFeatureFlags` enum in the `package.json` file export const FEATURE_FLAGS = { - tapiocaAddon: 0.3, - launcher: 0.05, + tapiocaAddon: 0.5, + launcher: 0.1, }; type FeatureFlagConfigurationKey = keyof typeof FEATURE_FLAGS | "all";