Giter Site home page Giter Site logo

Timeout configuration? about axios HOT 9 CLOSED

axios avatar axios commented on March 29, 2024
Timeout configuration?

from axios.

Comments (9)

mzabriskie avatar mzabriskie commented on March 29, 2024

Currently no option for this. But it would be a good feature.

from axios.

WillsB3 avatar WillsB3 commented on March 29, 2024

+1 for this feature.

from axios.

chrismcv avatar chrismcv commented on March 29, 2024

FYI - I'm doing it like this presently as a workaround

timeout = (s, promise) ->
  new Promise (resolve, reject) ->
    promise.then(resolve);
    setTimeout((-> 
      e = new Error('Timeout after '+s+' s')
      e.statusCode = 'timeout'
      reject e
    ), s * 1000);

timeout(10, axios.get(url)).catch globalErrorHandler

from axios.

mzabriskie avatar mzabriskie commented on March 29, 2024

This will be available when 0.6.0 is released.

from axios.

WillsB3 avatar WillsB3 commented on March 29, 2024

Awesome - Thanks 👍

from axios.

mzabriskie avatar mzabriskie commented on March 29, 2024

I just released 0.6.0 which includes a fix for this.

from axios.

tnrich avatar tnrich commented on March 29, 2024

hey @mzabriskie, could you please provide an example of how to use the timeout config for a single request?

Thanks very much!
Thomas

from axios.

 avatar commented on March 29, 2024

@tnrich axios.get('your-url', {'timeout': 1000});

I hope this helps.

from axios.

 avatar commented on March 29, 2024

@mzabriskie I have set axios.defaults.timeout = 1000;

I disconnected the server that provides me with the rest API.

But it takes more that 1 ms to timeout after sending a request.

This is how my request looks:

    return axios.post(`${ROOT_URL}/login/${role}`, creds).then((response) => {
      console.log(response);

        if(response.status === 200) {
          // If login was successful, set the token in local storage
          localStorage.setItem(`${role}_log_toks`, JSON.stringify(response.data));

          // Dispatch the success action
          dispatch(receiveLogin(response.data));

          return response;
        }
      }).catch(err => {
        console.log(err);
        // If there was a problem, we want to
        // dispatch the error condition
        if(err.data && err.status === 404) {
          dispatch(loginError(err.data));
        } else {
          dispatch(loginError('Please check your network connection and try again.'));
        }

        return err;
      });

from axios.

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.