You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I also found this line which confuses me. The readme says nothing about an option called forever in the timeouts function and I'm unsure if it's a miss in the readme or in the code.
The timeout variable is used as the timeout in a setTimeout but this line right here sets timeout to an array of size 1 but setTimeout doesn't accept an array as a second argument.
Isn't the current attempt missing when executing this callback right here?
node-retry/lib/retry_operation.js
Line 110 in b8e26ea
I also found this line which confuses me. The readme says nothing about an option called
forever
in thetimeouts
function and I'm unsure if it's a miss in the readme or in the code.node-retry/lib/retry.js
Line 37 in b8e26ea
https://github.com/tim-kos/node-retry#retrytimeoutsoptions
The timeout variable is used as the timeout in a setTimeout but this line right here sets timeout to an array of size 1 but setTimeout doesn't accept an array as a second argument.
node-retry/lib/retry_operation.js
Line 65 in b8e26ea
node-retry/lib/retry_operation.js
Line 86 in b8e26ea
Couldn't this cause unwanted behaviour?
The text was updated successfully, but these errors were encountered: