This is an automated email from the ASF dual-hosted git repository.
vincbeck pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 41d9be072a Fix AWS appflow waiter (#33613)
41d9be072a is described below
commit 41d9be072abacc47393f700aa8fb98bc2b9a3713
Author: Raphaƫl Vandon <[email protected]>
AuthorDate: Tue Aug 22 08:31:02 2023 -0700
Fix AWS appflow waiter (#33613)
---
airflow/providers/amazon/aws/waiters/appflow.json | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/airflow/providers/amazon/aws/waiters/appflow.json
b/airflow/providers/amazon/aws/waiters/appflow.json
index f45c427467..ed239a4048 100644
--- a/airflow/providers/amazon/aws/waiters/appflow.json
+++ b/airflow/providers/amazon/aws/waiters/appflow.json
@@ -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,