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
The factor option is used to grow the delay exponentially. For example, a value of 2 will cause the delay to double each time. A value of 3 will cause the delay to triple each time. Fractional factors (e.g. 1.5) are also allowed.
The following formula is used to calculate delay using the factor:
delay = delay * Math.pow(factor, attemptNum)
(default: 0)
This implies that the delay is ignored by default. The default should probably be 1
The text was updated successfully, but these errors were encountered:
From the docs
This implies that the delay is ignored by default. The default should probably be 1
The text was updated successfully, but these errors were encountered: