covidium commented on code in PR #33251:
URL: https://github.com/apache/airflow/pull/33251#discussion_r1289668698
##########
airflow/providers/amazon/aws/operators/rds.py:
##########
@@ -351,6 +353,8 @@ def __init__(
s3_prefix: str = "",
export_only: list[str] | None = None,
wait_for_completion: bool = True,
+ waiter_interval: int = 30,
+ waiter_max_attempts: int = 40,
Review Comment:
That's the default waiting time defined in the hook
wait_for_export_task_state. I've added these settings as in us-east-1 we're
getting a 20 minutes delay before the actual export task starts, resulting in
the failure of the DAG, so I need a way to modify those values and increase
them over 30 minutes.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]