Skip to content

Instantly share code, notes, and snippets.

@rastalamm
Created July 18, 2015 20:15
Show Gist options
  • Save rastalamm/5e68e3db2a48984189b1 to your computer and use it in GitHub Desktop.
Save rastalamm/5e68e3db2a48984189b1 to your computer and use it in GitHub Desktop.
Creating keep Alive Agent if you run into the 'EADDRNOTAVAIL' problem. (You ran out of sockets)
var keepAliveAgent = new http.Agent({
keepAlive: true,
keepAliveMsecs : 200 });
var options = {
hostname : HOST,
port : PORT,
method : 'POST',
agent : keepAliveAgent
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment