react-code-dataset / wp-calypso /client /state /data-layer /wpcom-http /pipeline /retry-on-failure /policies.js
| export const exponentialBackoff = ( { delay = 1000, maxAttempts = 3 } = {} ) => ( { | |
| name: 'EXPONENTIAL_BACKOFF', | |
| delay: Math.max( 500, delay ), | |
| maxAttempts: Math.min( 5, maxAttempts ), | |
| } ); | |
| export const noRetry = () => ( { | |
| name: 'NO_RETRY', | |
| } ); | |
| export default exponentialBackoff(); | |