Skip to content

Commit

Permalink
Fix AWS appflow waiter (#33613)
Browse files Browse the repository at this point in the history
  • Loading branch information
vandonr-amz committed Aug 22, 2023
1 parent 2363fb5 commit 41d9be0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airflow/providers/amazon/aws/waiters/appflow.json
Expand Up @@ -10,13 +10,13 @@
"expected": "Successful",
"matcher": "path",
"state": "success",
"argument": "flowExecutions[?executionId=='{{EXECUTION_ID}}'].executionStatus"
"argument": "flowExecutions[?executionId=='{{EXECUTION_ID}}'].executionStatus | [0]"
},
{
"expected": "Error",
"matcher": "path",
"state": "failure",
"argument": "flowExecutions[?executionId=='{{EXECUTION_ID}}'].executionStatus"
"argument": "flowExecutions[?executionId=='{{EXECUTION_ID}}'].executionStatus | [0]"
},
{
"expected": true,
Expand Down

0 comments on commit 41d9be0

Please sign in to comment.