fix(flows): add type: constant and fix interval field name in retry blocks
All checks were successful
Build and Push Docker Images / Build Backend (FastAPI) (push) Successful in 32s
Build and Push Docker Images / Build Frontend (Next.js) (push) Successful in 1m3s
Build and Push Docker Images / Build Integrator (push) Successful in 57s
Build and Push Docker Images / Build Kestra Init (push) Successful in 32s
Build and Push Docker Images / Trigger Portainer Update (push) Successful in 1s
All checks were successful
Build and Push Docker Images / Build Backend (FastAPI) (push) Successful in 32s
Build and Push Docker Images / Build Frontend (Next.js) (push) Successful in 1m3s
Build and Push Docker Images / Build Integrator (push) Successful in 57s
Build and Push Docker Images / Build Kestra Init (push) Successful in 32s
Build and Push Docker Images / Trigger Portainer Update (push) Successful in 1s
Kestra requires retry.type to be set (e.g. constant, exponential). Also rename delay -> interval which is the correct field for constant retry. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -21,5 +21,6 @@ tasks:
|
|||||||
timeout: PT30M
|
timeout: PT30M
|
||||||
|
|
||||||
retry:
|
retry:
|
||||||
|
type: constant
|
||||||
maxAttempts: 3
|
maxAttempts: 3
|
||||||
delay: PT15M
|
interval: PT15M
|
||||||
|
|||||||
@@ -21,5 +21,6 @@ tasks:
|
|||||||
timeout: PT30M
|
timeout: PT30M
|
||||||
|
|
||||||
retry:
|
retry:
|
||||||
|
type: constant
|
||||||
maxAttempts: 3
|
maxAttempts: 3
|
||||||
delay: PT15M
|
interval: PT15M
|
||||||
|
|||||||
@@ -21,5 +21,6 @@ tasks:
|
|||||||
timeout: PT30M
|
timeout: PT30M
|
||||||
|
|
||||||
retry:
|
retry:
|
||||||
|
type: constant
|
||||||
maxAttempts: 2
|
maxAttempts: 2
|
||||||
delay: PT30M
|
interval: PT30M
|
||||||
|
|||||||
@@ -26,5 +26,6 @@ errors:
|
|||||||
message: "GIAS update FAILED: {{ error.message }}"
|
message: "GIAS update FAILED: {{ error.message }}"
|
||||||
|
|
||||||
retry:
|
retry:
|
||||||
|
type: constant
|
||||||
maxAttempts: 3
|
maxAttempts: 3
|
||||||
delay: PT10M
|
interval: PT10M
|
||||||
|
|||||||
@@ -21,5 +21,6 @@ tasks:
|
|||||||
timeout: PT60M
|
timeout: PT60M
|
||||||
|
|
||||||
retry:
|
retry:
|
||||||
|
type: constant
|
||||||
maxAttempts: 2
|
maxAttempts: 2
|
||||||
delay: PT30M
|
interval: PT30M
|
||||||
|
|||||||
@@ -18,5 +18,6 @@ errors:
|
|||||||
message: "KS2 re-import FAILED: {{ error.message }}"
|
message: "KS2 re-import FAILED: {{ error.message }}"
|
||||||
|
|
||||||
retry:
|
retry:
|
||||||
|
type: constant
|
||||||
maxAttempts: 2
|
maxAttempts: 2
|
||||||
delay: PT5M
|
interval: PT5M
|
||||||
|
|||||||
@@ -28,5 +28,6 @@ errors:
|
|||||||
message: "Ofsted update FAILED: {{ error.message }}"
|
message: "Ofsted update FAILED: {{ error.message }}"
|
||||||
|
|
||||||
retry:
|
retry:
|
||||||
|
type: constant
|
||||||
maxAttempts: 3
|
maxAttempts: 3
|
||||||
delay: PT10M
|
interval: PT10M
|
||||||
|
|||||||
@@ -26,5 +26,6 @@ errors:
|
|||||||
message: "Parent View update FAILED: {{ error.message }}"
|
message: "Parent View update FAILED: {{ error.message }}"
|
||||||
|
|
||||||
retry:
|
retry:
|
||||||
|
type: constant
|
||||||
maxAttempts: 3
|
maxAttempts: 3
|
||||||
delay: PT10M
|
interval: PT10M
|
||||||
|
|||||||
@@ -21,5 +21,6 @@ tasks:
|
|||||||
timeout: PT30M
|
timeout: PT30M
|
||||||
|
|
||||||
retry:
|
retry:
|
||||||
|
type: constant
|
||||||
maxAttempts: 3
|
maxAttempts: 3
|
||||||
delay: PT15M
|
interval: PT15M
|
||||||
|
|||||||
@@ -21,5 +21,6 @@ tasks:
|
|||||||
timeout: PT30M
|
timeout: PT30M
|
||||||
|
|
||||||
retry:
|
retry:
|
||||||
|
type: constant
|
||||||
maxAttempts: 3
|
maxAttempts: 3
|
||||||
delay: PT15M
|
interval: PT15M
|
||||||
|
|||||||
Reference in New Issue
Block a user