We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a76cc3 commit 1f1cd82Copy full SHA for 1f1cd82
packages/retry-middleware/src/configurations.ts
@@ -3,7 +3,13 @@ import { ExponentialBackOffStrategy } from "./defaultStrategy";
3
4
export namespace RetryConfig {
5
export interface Input {
6
+ /**
7
+ * The maximum number of times requests that encounter potentially transient failures should be retried
8
+ */
9
maxRetries?: number;
10
11
+ * The strategy to retry the request. Using built-in exponential backoff strategy by default.
12
13
retryStrategy?: RetryStrategy;
14
}
15
export interface Resolved {
0 commit comments