Skip to content

Commit

Permalink
Update default value for BatchSensor (#37234)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincbeck committed Feb 7, 2024
1 parent e99cfbb commit 1f1fa2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airflow/providers/amazon/aws/sensors/batch.py
Expand Up @@ -60,8 +60,8 @@ def __init__(
aws_conn_id: str = "aws_default",
region_name: str | None = None,
deferrable: bool = conf.getboolean("operators", "default_deferrable", fallback=False),
poke_interval: float = 5,
max_retries: int = 5,
poke_interval: float = 30,
max_retries: int = 4200,
**kwargs,
):
super().__init__(**kwargs)
Expand Down

0 comments on commit 1f1fa2f

Please sign in to comment.