diff --git a/src/vs/workbench/services/remote/electron-browser/tunnelServiceImpl.ts b/src/vs/workbench/services/remote/electron-browser/tunnelServiceImpl.ts index 325dfa384175943716a9d04a651c22d798da09e7..b74b211066fc6da0987f50d35eeb5895b1d464b5 100644 --- a/src/vs/workbench/services/remote/electron-browser/tunnelServiceImpl.ts +++ b/src/vs/workbench/services/remote/electron-browser/tunnelServiceImpl.ts @@ -8,14 +8,15 @@ import { IProductService } from 'vs/platform/product/common/productService'; import { ISignService } from 'vs/platform/sign/common/sign'; import { IRemoteAgentService } from 'vs/workbench/services/remote/common/remoteAgentService'; import { BaseTunnelService } from 'vs/platform/remote/node/tunnelService'; +import { nodeSocketFactory } from 'vs/platform/remote/node/nodeSocketFactory'; export class TunnelService extends BaseTunnelService { public constructor( @ILogService logService: ILogService, @ISignService signService: ISignService, @IProductService productService: IProductService, - @IRemoteAgentService remoteAgentService: IRemoteAgentService + @IRemoteAgentService _remoteAgentService: IRemoteAgentService ) { - super(remoteAgentService.socketFactory, logService, signService, productService); + super(nodeSocketFactory, logService, signService, productService); } }