Skip to content

Commit

Permalink
Update vscode-tas-client package (#15756)
Browse files Browse the repository at this point in the history
* Update package.json
* Use new features
  • Loading branch information
kimadeline authored Mar 23, 2021
1 parent 2550b5b commit 80cf2c5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2040,7 +2040,7 @@
"vscode-languageclient": "7.0.0",
"vscode-languageserver": "7.0.0",
"vscode-languageserver-protocol": "3.16.0",
"vscode-tas-client": "^0.1.17",
"vscode-tas-client": "^0.1.22",
"winreg": "^1.2.4",
"winston": "^3.2.1",
"xml2js": "^0.4.19"
Expand Down
3 changes: 2 additions & 1 deletion src/client/common/experiments/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ export class ExperimentService implements IExperimentService {
public async activate(): Promise<void> {
if (this.experimentationService) {
await this.experimentationService.initializePromise;
await this.experimentationService.initialFetch;
}
}

Expand Down Expand Up @@ -120,7 +121,7 @@ export class ExperimentService implements IExperimentService {
return undefined;
}

return this.experimentationService.getTreatmentVariableAsync('vscode', experiment);
return this.experimentationService.getTreatmentVariableAsync('vscode', experiment, true);
}

private logExperiments() {
Expand Down

0 comments on commit 80cf2c5

Please sign in to comment.