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
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@ spec:
gRPCStatusCodes: "4,8-11,13,14" # retry gRPC status codes in these ranges and separate single codes.
```

Retry filtering on status codes only filters on the transport-level status code of the call to your application. It does not apply to [bulk subscribe]({{% ref pubsub-bulk.md %}}), since that status isn't carried as an HTTP or gRPC status code. For instance, a bulk subscribe handler returning `RETRY` for an entry is always retried according to the policy's settings, regardless of what codes are configured.

{{% alert title="Note" color="primary" %}}
Field values for status codes must follow the format specified above. An incorrectly formatted value produces an error log ("Could not read resiliency policy") and the `daprd` startup sequence will proceed.
{{% /alert %}}
Expand Down
Loading