Use `nodeSocketFactory` for tunnels for now (#113914)

上级 1228854b
......@@ -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);
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册