You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/sdk/api/sdkMiddlewareHttp.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ The HTTP middleware can run in either a browser or Node.js environment. For Node
38
38
9.`retryDelay`_(Number)_: amount of milliseconds to wait before retrying the next request. (Default: 200)
39
39
10.`backoff`_(Boolean)_: activates exponential backoff. Recommended to prevent spamming of the server. (Default: true)
40
40
11.`maxDelay`_(Number)_: The maximum duration (milliseconds) to wait before retrying, useful if the delay time grew exponentially more than reasonable
41
-
12.`retryOnAbort`_(Boolean)_: Configure the client to retry an aborted request or not. defaults to false.
41
+
12.`retryOnAbort`_(Boolean)_: Configure the client to retry an aborted request or not. Defaults to false.
42
42
13.`fetch`_(Function)_: A `fetch` implementation which can be e.g. `node-fetch` or `unfetch` but also the native browser `fetch` function
43
43
14.`timeout`_(Number)_: Request/response timeout in ms. Must have globally available or passed in `AbortController`
44
44
15.`abortController` or `getAbortController` depending on you chose to handle the timeout (_abortController_): This property accepts the `AbortController` instance. Could be [abort-controller](https://www.npmjs.com/package/abort-controller) or globally available one.
0 commit comments