From e3bef3342e4b322760d080799b518f5e1cbcc73a Mon Sep 17 00:00:00 2001 From: Wei Lee Date: Wed, 24 Jan 2024 11:01:18 +0800 Subject: [PATCH] ci(providers/amazon): extend max_attempts for resume_redshift_cluster to 50 --- .../aws/example_dags/example_redshift_cluster_management.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astronomer/providers/amazon/aws/example_dags/example_redshift_cluster_management.py b/astronomer/providers/amazon/aws/example_dags/example_redshift_cluster_management.py index dfa382704..f6506d159 100644 --- a/astronomer/providers/amazon/aws/example_dags/example_redshift_cluster_management.py +++ b/astronomer/providers/amazon/aws/example_dags/example_redshift_cluster_management.py @@ -98,7 +98,7 @@ def check_dag_status(**kwargs: Any) -> None: task_id="resume_redshift_cluster", cluster_identifier=REDSHIFT_CLUSTER_IDENTIFIER, aws_conn_id=AWS_CONN_ID, - max_attempts=20, + max_attempts=50, ) # [END howto_operator_redshift_resume_cluster_async]