Skip to content

Commit eca8ff7

Browse files
committed
💄
1 parent 1c7dfd5 commit eca8ff7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/experiments.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import * as configcatcommon from 'configcat-common';
99
import * as semver from 'semver';
1010
import { ISessionService } from './services/sessionService';
1111
import { ILogService } from './services/logService';
12+
import { Configuration } from './configuration';
1213

1314
const EXPERTIMENTAL_SETTINGS = [
1415
'gitpod.remote.useLocalApp',
@@ -25,8 +26,7 @@ export class ExperimentalSettings {
2526
private readonly sessionService: ISessionService,
2627
private readonly logger: ILogService
2728
) {
28-
const config = vscode.workspace.getConfiguration('gitpod');
29-
const host = config.get<string>('host');
29+
const host = Configuration.getGitpodHost();
3030

3131
this.configcatClient = configcat.createClientWithLazyLoad(key, {
3232
baseUrl: new URL('/configcat', host).href,

0 commit comments

Comments
 (0)