Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: implement exponential back off on the retries of `_refreshAccess…
…Token` method (#869) ## What kind of change does this PR introduce? Currently the retry interval of `_refreshAccessToken` goes 200, 400, 600, 800, where as I believe the intended intervals are 200, 400, 800, 1600... ## What is the current behavior? The retry interval is multiple of 200 ms. ## What is the new behavior? The retry interval is properly set exponentially. --------- Co-authored-by: Kang Ming <[email protected]>
- Loading branch information