hussein-awala commented on issue #29903:
URL: https://github.com/apache/airflow/issues/29903#issuecomment-1454256057
I can reproduce on master:
```python
import pendulum
from airflow.decorators import dag
from airflow.operators.bash import BashOperator
@dag(
dag_id="test_default_args_with_partial",
start_date=pendulum.datetime(2023, 1, 1),
catchup=False,
default_args={"retries": 0},
)
def dag():
op = BashOperator.partial(task_id="my_task",
retries=3).expand(bash_command=["exit 1", "ps"])
dag()
```
The retries of the mapped tasks is 0.
--
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]