From 90c9d81a25ffd69c57cdb377f044ee2f11292d59 Mon Sep 17 00:00:00 2001 From: Anton Troshin Date: Thu, 12 Dec 2024 19:51:12 -0600 Subject: [PATCH] Fix resiliency example typo Signed-off-by: Anton Troshin --- daprdocs/content/en/operations/resiliency/policies.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/operations/resiliency/policies.md b/daprdocs/content/en/operations/resiliency/policies.md index d394039d5..c7b40c3b8 100644 --- a/daprdocs/content/en/operations/resiliency/policies.md +++ b/daprdocs/content/en/operations/resiliency/policies.md @@ -96,7 +96,7 @@ spec: policy: constant duration: 5s maxRetries: 3 - matches: + matching: httpStatusCodes: "429,500-599" # retry the HTTP status codes in this range. All others are not retried. gRPCStatusCodes: "1-4,8-11,13,14" # retry gRPC status codes in these ranges and separate single codes. ```