Skip to content

Commit

Permalink
Ensure ExperimentationService gets disposed. (#161004)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRosenwasser committed Sep 15, 2022
1 parent 33ccdf6 commit 9dfd49d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/typescript-language-features/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export function activate(
registerBaseCommands(commandManager, lazyClientHost, pluginManager, activeJsTsEditorTracker);

// Currently no variables in use.
new ExperimentationService(context);
context.subscriptions.push(new ExperimentationService(context));

import('./task/taskProvider').then(module => {
context.subscriptions.push(module.register(lazyClientHost.map(x => x.serviceClient)));
Expand Down

0 comments on commit 9dfd49d

Please sign in to comment.