We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to get request working in a Node v8 nightly, but tunnel-agent is incompatible.
request
tunnel-agent
TypeError: Agent option must be an instance of http.Agent, undefined or false.
The TunnelingAgent class now needs to inherit from http.Agent.
TunnelingAgent
http.Agent
The text was updated successfully, but these errors were encountered:
Inherit from http.Agent rather than events.EventEmitter
5928bf5
Fixes request#23
8d8beeb
No branches or pull requests
I'm trying to get
request
working in a Node v8 nightly, buttunnel-agent
is incompatible.The
TunnelingAgent
class now needs to inherit fromhttp.Agent
.The text was updated successfully, but these errors were encountered: