From e9c1e1af181a1d3c8a80de74e30cc9983a3c1913 Mon Sep 17 00:00:00 2001 From: Simon Kok Date: Wed, 17 Jan 2024 13:25:15 +0100 Subject: [PATCH] Fix pipeline management state machine error handling **Why?** The pipeline management Step Function state machine is not a valid definition. **What?** The error(s) it catches should be an array. --- .../adf-bootstrap/deployment/pipeline_management.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lambda_codebase/initial_commit/bootstrap_repository/adf-bootstrap/deployment/pipeline_management.yml b/src/lambda_codebase/initial_commit/bootstrap_repository/adf-bootstrap/deployment/pipeline_management.yml index 9fcf18b84..e24ab6d90 100644 --- a/src/lambda_codebase/initial_commit/bootstrap_repository/adf-bootstrap/deployment/pipeline_management.yml +++ b/src/lambda_codebase/initial_commit/bootstrap_repository/adf-bootstrap/deployment/pipeline_management.yml @@ -607,7 +607,7 @@ Resources: }, "Catch": [ { - "ErrorEquals": "ParameterNotFound", + "ErrorEquals": ["ParameterNotFound"], "Next": "ParameterNotFoundFallback" } ],