Skip to content

Commit c193076

Browse files
committed
Fix compilation errors
1 parent bb09bae commit c193076

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

src/vs/platform/remote/node/tunnelService.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,8 @@ export class TunnelService extends AbstractTunnelService {
151151
socketFactory: nodeSocketFactory,
152152
addressProvider,
153153
signService: this.signService,
154-
logService: this.logService
154+
logService: this.logService,
155+
ipcLogger: null
155156
};
156157

157158
const tunnel = createRemoteTunnel(options, remoteHost, remotePort, localPort);

src/vs/workbench/electron-browser/desktop.main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ class DesktopMain extends Disposable {
195195
serviceCollection.set(ISignService, signService);
196196

197197
// Remote Agent
198-
const remoteAgentService = this._register(new RemoteAgentService(this.environmentService, remoteAuthorityResolverService, signService, logService, productService));
198+
const remoteAgentService = this._register(new RemoteAgentService(this.environmentService, productService, remoteAuthorityResolverService, signService, logService));
199199
serviceCollection.set(IRemoteAgentService, remoteAgentService);
200200

201201
// Electron

src/vs/workbench/services/configuration/test/electron-browser/configurationService.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ suite('WorkspaceContextService - Folder', () => {
112112
const diskFileSystemProvider = new DiskFileSystemProvider(new NullLogService());
113113
fileService.registerProvider(Schemas.file, diskFileSystemProvider);
114114
fileService.registerProvider(Schemas.userData, new FileUserDataProvider(environmentService.appSettingsHome, environmentService.backupHome, new DiskFileSystemProvider(new NullLogService()), environmentService, new NullLogService()));
115-
workspaceContextService = new WorkspaceService({ configurationCache: new ConfigurationCache(environmentService) }, environmentService, fileService, new RemoteAgentService(environmentService, new RemoteAuthorityResolverService(), new SignService(undefined), new NullLogService(), { _serviceBrand: undefined, ...product }));
115+
workspaceContextService = new WorkspaceService({ configurationCache: new ConfigurationCache(environmentService) }, environmentService, fileService, new RemoteAgentService(environmentService, { _serviceBrand: undefined, ...product }, new RemoteAuthorityResolverService(), new SignService(undefined), new NullLogService()));
116116
return (<WorkspaceService>workspaceContextService).initialize(convertToWorkspacePayload(URI.file(folderDir)));
117117
});
118118
});

src/vs/workbench/services/extensions/common/remoteExtensionHost.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ export class RemoteExtensionHost extends Disposable implements IExtensionHost {
9696
}
9797
},
9898
signService: this._signService,
99-
logService: this._logService
99+
logService: this._logService,
100+
ipcLogger: null
100101
};
101102
return this.remoteAuthorityResolverService.resolveAuthority(this._initDataProvider.remoteAuthority).then((resolverResult) => {
102103

0 commit comments

Comments
 (0)