Git Product home page Git Product logo

Comments (6)

donovanhiland avatar donovanhiland commented on July 29, 2024 4

@StarpTech What in 0.19.1 fixes this? Nothing stands out after scanning through the release notes.

from axios-retry.

mawrkus avatar mawrkus commented on July 29, 2024

Currently, axios-retry does not support this behaviour and implementing it is not trivial.
Our only suggestion is that your app manages this case for now.
If you have any idea, please feel free to open a PR and we will consider it.

from axios-retry.

stanvol avatar stanvol commented on July 29, 2024

Hi,

I have just looked at the issue and found simple fix (add catch() to retry promises):

return new Promise(resolve => 
    setTimeout(() => resolve(axios(config).catch(() => null)), delay)
);

With this fix everything works fine.

from axios-retry.

majames avatar majames commented on July 29, 2024

Hi all! Just wanted to add my two-cents and say that this tripped me up recently too as I find it quite unintuitive that the error interceptor will be called for each re-try that is performed.

It would be great if axios-retry handled this!

from axios-retry.

StarpTech avatar StarpTech commented on July 29, 2024

The issue was fixed with https://github.com/axios/axios/releases/tag/0.19.1

from axios-retry.

michal-filip avatar michal-filip commented on July 29, 2024

My workaround was to flag the error as processed within my response interceptor to avoid multiple processing of the same error instance.

axiosInstance.interceptors.response.use(
    (response) => response,
    (error: any) => {
        // Tag processed error to avoid multiple processing of single error in retry scenarios
        if (error.isProcessed) {
          return Promise.reject(error);
        }

        error.isProcessed = true;

        // actual processing here
    }
);

from axios-retry.

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.