We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As long as there is a network error, it will do retry, regrading of the HTTP methods: https://github.com/softonic/axios-retry/blob/master/es/index.js#L63
So even in ETIMEDOUT or ECONNRESET https://github.com/softonic/axios-retry/blob/master/es/index.js#L14 https://github.com/floatdrop/is-retry-allowed/blob/master/index.js#L4
ETIMEDOUT
ECONNRESET
So it is possible that in a non-idempotent POST request, it will do retry and it will create duplicated entries in server side.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As long as there is a network error, it will do retry, regrading of the HTTP methods:
https://github.com/softonic/axios-retry/blob/master/es/index.js#L63
So even in
ETIMEDOUT
orECONNRESET
https://github.com/softonic/axios-retry/blob/master/es/index.js#L14
https://github.com/floatdrop/is-retry-allowed/blob/master/index.js#L4
So it is possible that in a non-idempotent POST request, it will do retry and it will create duplicated entries in server side.
The text was updated successfully, but these errors were encountered: