Skip to content

Commit 9bc8b38

Browse files
authored
update stable experiment groups allocation (microsoft#250588)
1 parent eb75748 commit 9bc8b38

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExpService.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ export enum GettingStartedExperimentGroup {
4242

4343
const STABLE_EXPERIMENT_GROUPS: ExperimentGroupDefinition[] = [
4444
// Bump the iteration each time we change group allocations
45-
{ name: GettingStartedExperimentGroup.Default, min: 0, max: 1, iteration: 1, walkthroughId: 'Setup' }
45+
{ name: GettingStartedExperimentGroup.New, min: 0.0, max: 0.2, iteration: 1, walkthroughId: 'NewWelcomeExperience' },
46+
{ name: GettingStartedExperimentGroup.Control, min: 0.2, max: 0.4, iteration: 1, walkthroughId: 'Setup' },
47+
{ name: GettingStartedExperimentGroup.Default, min: 0.4, max: 1, iteration: 1, walkthroughId: 'Setup' }
4648
];
4749

4850
const INSIDERS_EXPERIMENT_GROUPS: ExperimentGroupDefinition[] = [

0 commit comments

Comments
 (0)