From a75fba5e951dbb13879a59bc26bdfa11189401d6 Mon Sep 17 00:00:00 2001 From: Chris Lample Date: Fri, 1 Sep 2023 11:20:51 +0200 Subject: [PATCH] feat: rename retry-strategy MaxAttempts to MaxRetries (#114) --- types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types.go b/types.go index f7f54b7..027aa49 100644 --- a/types.go +++ b/types.go @@ -600,7 +600,7 @@ type SSLCertificates struct { type RetryStrategy struct { Type string `json:"type"` BaseBackoffSeconds int `json:"baseBackoffSeconds"` - MaxAttempts int `json:"maxAttempts"` + MaxRetries int `json:"maxRetries"` MaxDurationSeconds int `json:"maxDurationSeconds"` SameRegion bool `json:"sameRegion"` }