Created
August 8, 2019 12:25
-
-
Save ValentinFunk/acb13654acdc4e07efa7d27de2146d01 to your computer and use it in GitHub Desktop.
Retry rate limited request on node using bluebird-retry
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as retry from 'bluebird-retry'; | |
function isRateLimitOrTempError(err: Error & { statusCode?: number }) { | |
return err.statusCode && ( | |
err.statusCode == 429 // Rate Limit | |
|| err.statusCode == 502 // Temporary error, retry again | |
); | |
} | |
function retryOnRateLimited<T>(request: () => Promise<T>): Promise<T> { | |
return retry(request, { | |
max_tries: 50, | |
backoff: 1.25, | |
throw_original: true, | |
interval: 2000, | |
predicate: isRateLimitOrTempError, | |
}); | |
} | |
const result = await retryOnRateLimited(() => request.post('/limit-me')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment