Skip to content

Commit

Permalink
Fix pipeline management state machine error handling (#683)
Browse files Browse the repository at this point in the history
**Why?**

The pipeline management Step Function state machine is not a valid definition.

**What?**

The error(s) it catches should be an array.
  • Loading branch information
sbkok authored Jan 18, 2024
1 parent aeacdf3 commit f219e30
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ Resources:
},
"Catch": [
{
"ErrorEquals": "ParameterNotFound",
"ErrorEquals": ["ParameterNotFound"],
"Next": "ParameterNotFoundFallback"
}
],
Expand Down

0 comments on commit f219e30

Please sign in to comment.