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: fern/products/api-def/openapi-pages/extensions/retries.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ subtitle: Configure retry behavior for endpoints using `x-fern-retries` extensio
4
4
---
5
5
6
6
<Calloutintent="info">
7
-
The `x-fern-retries` extension is currently supported in Python SDKs only.
7
+
The `x-fern-retries` extension is supported in Python SDKs only.
8
8
</Callout>
9
9
10
10
The `x-fern-retries` extension allows you to configure retry behavior at the endpoint level in your OpenAPI specification. This gives you fine-grained control over how the generated SDK handles retries for specific endpoints, overriding any default retry configuration that end users may have set.
@@ -28,7 +28,7 @@ paths:
28
28
type: string
29
29
```
30
30
31
-
When retries are disabled at the endpoint level, the generated SDK will not retry failed requests to that endpoint, regardless of the end user's SDK configuration.
31
+
When retries are disabled at the endpoint level, the generated SDK won't retry failed requests to that endpoint, regardless of the end user's SDK configuration.
32
32
33
33
## Use cases
34
34
@@ -40,7 +40,7 @@ The `x-fern-retries` extension is useful when you want to:
40
40
41
41
## Example: Disable retries for a POST endpoint
42
42
43
-
In this example, we disable retries for a plant creation endpoint to prevent duplicate entries:
43
+
This example disables retries for a plant creation endpoint to prevent duplicate entries:
0 commit comments