-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
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
fix: ensure node retries happen when using .then syntax (#1487) #1543
fix: ensure node retries happen when using .then syntax (#1487) #1543
Conversation
Hello @niftylettuce! We're quite keen to see this fixed as we're having a number of socket timeout errors. I'm wondering when you'll have an opportunity to review this PR. Is there something I can do to make it happen? Thank you |
v5.3.0 published to npm and GitHub releases page with changelog |
@niftylettuce thank you for releasing this! |
no prob |
|
Oh sorry, I commented on the wrong issue. Ignore this. |
For reference, or if you want to help debug, see #1527. |
This PR is to enforce consistent
retry
behaviour for both the.end
and.then
syntaxes.The problem I'm trying to fix has been highlighted in these issues:
When using
.then
syntax in Node.js, we only want to abort a request if there are no retries or the maximum number of retries has been exceeded.Please review