in runtimes/runtimes/util/standalone/experimentalProxyUtil.ts [47:56]
public getV3ProxyConfig(): NodeHttpHandler {
if (!this.cachedV3Config) {
const agent = this.getSecureAgent()
this.cachedV3Config = new NodeHttpHandler({
httpAgent: agent,
httpsAgent: agent,
})
}
return this.cachedV3Config
}