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

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:
2026-03-24 20:08:17 +00:00
parent 7072d37541
commit 2c7da5459d
10 changed files with 20 additions and 10 deletions

View File

@@ -21,5 +21,6 @@ tasks:
timeout: PT30M
retry:
type: constant
maxAttempts: 3
delay: PT15M
interval: PT15M

View File

@@ -21,5 +21,6 @@ tasks:
timeout: PT30M
retry:
type: constant
maxAttempts: 3
delay: PT15M
interval: PT15M

View File

@@ -21,5 +21,6 @@ tasks:
timeout: PT30M
retry:
type: constant
maxAttempts: 2
delay: PT30M
interval: PT30M

View File

@@ -26,5 +26,6 @@ errors:
message: "GIAS update FAILED: {{ error.message }}"
retry:
type: constant
maxAttempts: 3
delay: PT10M
interval: PT10M

View File

@@ -21,5 +21,6 @@ tasks:
timeout: PT60M
retry:
type: constant
maxAttempts: 2
delay: PT30M
interval: PT30M

View File

@@ -18,5 +18,6 @@ errors:
message: "KS2 re-import FAILED: {{ error.message }}"
retry:
type: constant
maxAttempts: 2
delay: PT5M
interval: PT5M

View File

@@ -28,5 +28,6 @@ errors:
message: "Ofsted update FAILED: {{ error.message }}"
retry:
type: constant
maxAttempts: 3
delay: PT10M
interval: PT10M

View File

@@ -26,5 +26,6 @@ errors:
message: "Parent View update FAILED: {{ error.message }}"
retry:
type: constant
maxAttempts: 3
delay: PT10M
interval: PT10M

View File

@@ -21,5 +21,6 @@ tasks:
timeout: PT30M
retry:
type: constant
maxAttempts: 3
delay: PT15M
interval: PT15M

View File

@@ -21,5 +21,6 @@ tasks:
timeout: PT30M
retry:
type: constant
maxAttempts: 3
delay: PT15M
interval: PT15M