Git Product home page Git Product logo

Comments (3)

bbugh avatar bbugh commented on September 3, 2024 3

If anyone else ends up here trying to answer this question, here's an implementation based on the suggestion to use interceptors. The example is in TypeScript but it will be the same in JS, just remove the types.

This gets the count of the tries and logs a warning:

interface AxiosRetryRequestConfig extends AxiosRequestConfig {
  'axios-retry'?: {
    retryCount: number,
    lastRequestTime: number
  }
}

axios.interceptors.request.use((config: AxiosRequestConfig) => {
  const retryRequestData = (<AxiosRetryRequestConfig>config)['axios-retry']

  if (retryRequestData) {
    const retryCount = retryRequestData.retryCount
    logger.warn(`[webhook] Webhook call retry #${retryCount}: ${config.url}`)
  }

  return config
})

My logger output:

2019-03-21 14:23:00 [info]:     [webhook] Sending webhook to http://localhost/webhooks/somewhere
2019-03-21 14:23:02 [warn]:     [webhook] Webhook call retry #1: http://localhost/webhooks/somewhere
2019-03-21 14:23:05 [warn]:     [webhook] Webhook call retry #2: http://localhost/webhooks/somewhere
2019-03-21 14:23:06 [info]:     [webhook] Response from webhook call: 200 OK

from axios-retry.

recz5 avatar recz5 commented on September 3, 2024

I'm working on an existing code based that has axios-retry implemented and it is hard to debug. It is difficult to identify if it is retrying. A callback would be helpful.

from axios-retry.

rubennorte avatar rubennorte commented on September 3, 2024

I think you could use a different interceptor to detect retries. You just need to register it after axios-retry and check the retry count. We're trying to keep the API minimal, and this use case can be implemented without adding new options.

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.