From 31dd67048f7de5a4cd80ff686feafd57fb06c06a Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Sat, 11 Jan 2025 16:01:00 +0900 Subject: [PATCH] digraph: update node.go (#788) --- internal/digraph/scheduler/node.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/digraph/scheduler/node.go b/internal/digraph/scheduler/node.go index c153aeb32..48baf9b96 100644 --- a/internal/digraph/scheduler/node.go +++ b/internal/digraph/scheduler/node.go @@ -818,7 +818,7 @@ func (n *Node) setupRetryPolicy(ctx context.Context) error { if n.data.Step.RetryPolicy.Interval > 0 { retryPolicy.Interval = n.data.Step.RetryPolicy.Interval } - // Evaluate the the configuration if it's configured as a string + // Evaluate the configuration if it's configured as a string // e.g. environment variable or command substitution if n.data.Step.RetryPolicy.LimitStr != "" { v, err := cmdutil.EvalIntString(ctx, n.data.Step.RetryPolicy.LimitStr)