UNPKG

@azure/core-rest-pipeline

Version:

Isomorphic client library for making HTTP requests in node.js and browser.

22 lines 950 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. import { exponentialRetryStrategy } from "../retryStrategies/exponentialRetryStrategy.js"; import { retryPolicy } from "./retryPolicy.js"; import { DEFAULT_RETRY_POLICY_COUNT } from "../constants.js"; /** * The programmatic identifier of the exponentialRetryPolicy. */ export const exponentialRetryPolicyName = "exponentialRetryPolicy"; /** * A policy that attempts to retry requests while introducing an exponentially increasing delay. * @param options - Options that configure retry logic. */ export function exponentialRetryPolicy(options = {}) { var _a; return retryPolicy([ exponentialRetryStrategy(Object.assign(Object.assign({}, options), { ignoreSystemErrors: true })), ], { maxRetries: (_a = options.maxRetries) !== null && _a !== void 0 ? _a : DEFAULT_RETRY_POLICY_COUNT, }); } //# sourceMappingURL=exponentialRetryPolicy.js.map