This is an automated email from the ASF dual-hosted git repository.
eladkal 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 1bc791ec8e AWS system test example_redshift: increase timeout (#31418)
1bc791ec8e is described below
commit 1bc791ec8eb4ff8fb0474807c222a04d63192bb8
Author: Vincent <[email protected]>
AuthorDate: Fri May 19 16:06:18 2023 -0400
AWS system test example_redshift: increase timeout (#31418)
---
tests/system/providers/amazon/aws/example_redshift.py | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/system/providers/amazon/aws/example_redshift.py
b/tests/system/providers/amazon/aws/example_redshift.py
index 2833abe2da..6fed6e6aa7 100644
--- a/tests/system/providers/amazon/aws/example_redshift.py
+++ b/tests/system/providers/amazon/aws/example_redshift.py
@@ -132,7 +132,7 @@ with DAG(
cluster_identifier=redshift_cluster_identifier,
target_status="available",
poke_interval=15,
- timeout=60 * 15,
+ timeout=60 * 30,
)
# [END howto_sensor_redshift_cluster]
@@ -153,7 +153,7 @@ with DAG(
cluster_identifier=redshift_cluster_identifier,
target_status="available",
poke_interval=15,
- timeout=60 * 15,
+ timeout=60 * 30,
)
# [START howto_operator_redshift_pause_cluster]
@@ -168,7 +168,7 @@ with DAG(
cluster_identifier=redshift_cluster_identifier,
target_status="paused",
poke_interval=15,
- timeout=60 * 15,
+ timeout=60 * 30,
)
# [START howto_operator_redshift_resume_cluster]
@@ -183,7 +183,7 @@ with DAG(
cluster_identifier=redshift_cluster_identifier,
target_status="available",
poke_interval=15,
- timeout=60 * 15,
+ timeout=60 * 30,
)
set_up_connection = create_connection(conn_id_name,
cluster_id=redshift_cluster_identifier)