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 c91b476f6d1 Fix incorrect documented defaults for
MwaaTriggerDagRunOperator waiter params (#71740)
c91b476f6d1 is described below
commit c91b476f6d185d583e7e61022888d572e2aaf695
Author: Maulik Patel <[email protected]>
AuthorDate: Tue Aug 18 08:41:47 2026 -0500
Fix incorrect documented defaults for MwaaTriggerDagRunOperator waiter
params (#71740)
The waiter_delay and waiter_max_attempts docstring defaults (120 and 720)
did not match the constructor defaults (60 and 20). The code defaults were
lowered in a prior PR but the docstring was not updated.
---
providers/amazon/src/airflow/providers/amazon/aws/operators/mwaa.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/providers/amazon/src/airflow/providers/amazon/aws/operators/mwaa.py
b/providers/amazon/src/airflow/providers/amazon/aws/operators/mwaa.py
index 5a6943eaaaa..d9cd6cbdf38 100644
--- a/providers/amazon/src/airflow/providers/amazon/aws/operators/mwaa.py
+++ b/providers/amazon/src/airflow/providers/amazon/aws/operators/mwaa.py
@@ -55,8 +55,8 @@ class MwaaTriggerDagRunOperator(AwsBaseOperator[MwaaHook]):
This parameter is only used if the local web token method is used
to call Airflow API. (templated)
:param wait_for_completion: Whether to wait for Dag run to stop. (default:
False)
- :param waiter_delay: Time in seconds to wait between status checks.
(default: 120)
- :param waiter_max_attempts: Maximum number of attempts to check for Dag
run completion. (default: 720)
+ :param waiter_delay: Time in seconds to wait between status checks.
(default: 60)
+ :param waiter_max_attempts: Maximum number of attempts to check for Dag
run completion. (default: 20)
:param deferrable: If True, the operator will wait asynchronously for the
Dag run to stop.
This implies waiting for completion. This mode requires aiobotocore
module to be installed.
(default: False)