Giter Site home page Giter Site logo

Comments (7)

jiang-12196 avatar jiang-12196 commented on August 25, 2024 2

I got this issue too.

from node-openid-client.

panva avatar panva commented on August 25, 2024

Whoa, what's the response time of these APIs? Anyway, openid-client has a timeout on calls set to 1500ms, you can change this configuration like so. If the APIs are unreliable you may also wanna enable retries > see the underlying got library mentioned in the docs and let me know if this fixes your issue. I don't see what else could ;)

from node-openid-client.

pottabathini avatar pottabathini commented on August 25, 2024

Thank you for your response. We tried with below settings
b2cIssuer.defaultHttpOptions = { retries: 5, timeout: 10000 }; console.log('httpOptions %j', b2cIssuer.defaultHttpOptions);

But still we are getting the same issue :-(

{"code":"ESOCKETTIMEDOUT","message":"Socket timed out on request to login.microsoftonline.com","host":"login.microsoftonline.com","hostname":"login.microsoftonline.com","method":"POST","path":"/tfp/tenantazureb2c.onmicrosoft.com/b2c_1_sign_in/oauth2/v2.0/token"}

Your library depend on got library to make requests to the server is these httpoption settings will work for that? As I seen it not even wait for that much time and even I don't think it re-trying after we set those options.

from node-openid-client.

panva avatar panva commented on August 25, 2024

Yes, all http requests done by the library use these options with the got library. The got library in turn uses node's http/s module, from which this error is coming. ESOCKETTIMEDOUT is not coming from got nor openid-client.

Not sure what your networking setup is, do you have an http/s proxy in your environment, does your user you test manually with have an http_proxy env set and the node user running your client not?

Try to do a plain request to that url using node's https module directly as a first thing in your node process to see whether you get a response from it.

from node-openid-client.

pottabathini avatar pottabathini commented on August 25, 2024

Not sure what your networking setup is, do you have an http/s proxy in your environment, does your user you test manually with have an http_proxy env set and the node user running your client not?

We don't have any http/s proxy set in our environment and I am testing with admin privileges

Try to do a plain request to that url using node's https module directly as a first thing in your node process to see whether you get a response from it.

we tried this and it giving the response without fail. We also tried using postman from the same client machine and it also working

Apart from those we tried to set threadpool size and it also failed.
#!/usr/bin/env node process.env.UV_THREADPOOL_SIZE = 128;

If you have time, I can provide you working repo where you can try and reproduce the same issue.

from node-openid-client.

panva avatar panva commented on August 25, 2024

wouldn't hurt to dig in

from node-openid-client.

cancerberoSgx avatar cancerberoSgx commented on August 25, 2024

I found if there are too many async requests, then ESOCKETTIMEDOUT exception happens in linux. The workaround I've found is doing this:

setting this options to request():

agent: false, pool: {maxSockets: 100}

Notice that after that, the timeout can be lying so you might need to increase it. Also in linux you could increase the max number of opened files per process to solve it.

from node-openid-client.

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.