You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi
version 1.3.0
If a proxy is defined and includes contains HTTPS url. Handshake failed because it is not possible to instantiate HttpsProxyAgent.
If I replace return _secure(serverURI) ? new HttpsProxyAgent(agentOpts) : new HttpcProxyAgent(agentOpts);
by return _secure(serverURI) ? new HttpsProxyAgent.HttpsProxyAgent(agentOpts) : new HttpcProxyAgent(agentOpts);
No exception is raised
Image shows the current implmentation doesn't consider new HttpsProxyAgent(agentOpts) has constructor
The text was updated successfully, but these errors were encountered:
Hi
version 1.3.0
If a proxy is defined and includes contains HTTPS url. Handshake failed because it is not possible to instantiate HttpsProxyAgent.
If I replace
return _secure(serverURI) ? new HttpsProxyAgent(agentOpts) : new HttpcProxyAgent(agentOpts);
by
return _secure(serverURI) ? new HttpsProxyAgent.HttpsProxyAgent(agentOpts) : new HttpcProxyAgent(agentOpts);
No exception is raised
Image shows the current implmentation doesn't consider new HttpsProxyAgent(agentOpts) has constructor
The text was updated successfully, but these errors were encountered: