Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions fern/products/api-def/openapi/extensions/retries.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,9 @@ description: Control API retry logic with x-fern-retries extension. Configure en
---


<Callout intent="info">
The `x-fern-retries` extension is supported in Python SDKs only.
</Callout>

The `x-fern-retries` extension configures retry behavior per endpoint in your OpenAPI specification, overriding any
retry settings configured by SDK users. Use it to disable retries for non-idempotent operations like payment
processing or order creation.
processing or order creation. It's supported across all SDK languages.

To disable retries for specific endpoints, set `disabled: true`.

Expand Down Expand Up @@ -49,4 +45,4 @@ paths:
description: Plant created successfully
```

When retries are disabled at the endpoint level, the generated SDK won't retry failed requests to that endpoint, regardless of the SDK's user custom configuration.
When retries are disabled at the endpoint level, the generated SDK won't retry failed requests to that endpoint, regardless of client-level or per-request retry settings.
Loading