Code Monkey home page Code Monkey logo

Comments (7)

floatdrop avatar floatdrop commented on April 28, 2024

Should we set agent to false by default as well? This seems like not obvious behaviour, but 5 sockets limit bothers me a lot.

from got.

julien-f avatar julien-f commented on April 28, 2024

At first thought I would be against but if @substack does it… :p

from got.

sindresorhus avatar sindresorhus commented on April 28, 2024

Yes, as long as we document it. I think it's fixed in Node 0.11 though.

from got.

floatdrop avatar floatdrop commented on April 28, 2024

@sindresorhus yes - this is fixed in 0.11.x. I would wait for release for some time, instead of setting default agent to false (it also breaks https tests) now and revert it back.

from got.

sindresorhus avatar sindresorhus commented on April 28, 2024

Node 0.10 will still be have to supported for a long time after (or if ever) node 0.12 is released. I think we should do it.

from got.

julien-f avatar julien-f commented on April 28, 2024

Having the same behavior on Node 0.10 & 0.12 is reason enough to do it.

from got.

floatdrop avatar floatdrop commented on April 28, 2024

To track progress on this:

Setting agent: false breaks https requests - https://github.com/substack/hyperquest/issues/19

There is another approach to this (see here) - setting maxSockets to Infinity (like 0.11 node does - nodejs/node-v0.x-archive@9fc9b87#diff-5f7fb0850412c6be189faeddea6c5359R100):

opts.maxSockets = opts.maxSockets || Infinity;
// ...
var fn;
if (parsedUrl.protocol === 'https:') {
    fn = https;
    opts.agent = new https.Agent(opts);
} else {
    fn = http;
    opts.agent = new http.Agent(opts);
}

But this will leave connections in pool - so redirect test will not be completed.

from got.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.