From 5bb7eea1fe2c51c06f466b43ad11d2bd2811ecad Mon Sep 17 00:00:00 2001 From: Dmitriy Date: Mon, 12 Jan 2026 12:43:22 +0500 Subject: [PATCH] fix: "retry.delay" property is missed in dsl-specification Signed-off-by: Dmitriy --- dsl-reference.md | 1 + 1 file changed, 1 insertion(+) diff --git a/dsl-reference.md b/dsl-reference.md index 71dfe1af..a8ae73bf 100644 --- a/dsl-reference.md +++ b/dsl-reference.md @@ -2182,6 +2182,7 @@ The Retry is a fundamental concept in the Serverless Workflow DSL, used to defin |----------|:----:|:--------:|-------------| | when | `string` | `no` | A a runtime expression used to determine whether or not to retry running the task, in a given context. | | exceptWhen | `string` | `no` | A runtime expression used to determine whether or not to retry running the task, in a given context. | +| delay | [`duration`](#duration) | `no` | The duration, if any, to wait between retry attempts. | | limit | [`retry`](#retry-limit) | `no` | The limits, if any, to impose to the retry policy. | | backoff | [`backoff`](#backoff) | `no` | The backoff strategy to use, if any. | | jitter | [`jitter`](#jitter) | `no` | The parameters, if any, that control the randomness or variability of the delay between retry attempts. |