Tag: retry

  • How to implement retry design pattern in Axios?

    In the microservices world a lot of microservices often communicate with each other through API calls. These calls can often break due to network issues and other problems. It makes sense to retry these calls when these issues happen so that the likelihood of getting a response increases. For node js applications this can be…