From bac98b7ca37b7a1822b9a84baf8cd587c760211c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vandon?= Date: Tue, 22 Aug 2023 06:52:22 -0700 Subject: [PATCH] fix appflow waiter --- 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 f45c427467901..ed239a4048320 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,