初始化环境文件
This commit is contained in:
14
node_modules/@smithy/util-retry/dist-es/defaultRetryBackoffStrategy.js
generated
vendored
Normal file
14
node_modules/@smithy/util-retry/dist-es/defaultRetryBackoffStrategy.js
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
import { DEFAULT_RETRY_DELAY_BASE, MAXIMUM_RETRY_DELAY } from "./constants";
|
||||
export const getDefaultRetryBackoffStrategy = () => {
|
||||
let delayBase = DEFAULT_RETRY_DELAY_BASE;
|
||||
const computeNextBackoffDelay = (attempts) => {
|
||||
return Math.floor(Math.min(MAXIMUM_RETRY_DELAY, Math.random() * 2 ** attempts * delayBase));
|
||||
};
|
||||
const setDelayBase = (delay) => {
|
||||
delayBase = delay;
|
||||
};
|
||||
return {
|
||||
computeNextBackoffDelay,
|
||||
setDelayBase,
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user