uranusjr commented on code in PR #59817:
URL: https://github.com/apache/airflow/pull/59817#discussion_r2648310721
##########
task-sdk/src/airflow/sdk/definitions/_internal/abstractoperator.py:
##########
@@ -66,7 +66,6 @@
DEFAULT_RETRY_DELAY: datetime.timedelta = datetime.timedelta(
seconds=conf.getint("core", "default_task_retry_delay", fallback=300)
)
-DEFAULT_RETRY_DELAY_MULTIPLIER: float = 2.0
Review Comment:
It is used in exactly one place, as the default value of
`MappedOperator.retry_delay_multiplier`, but that property is not used anywhere
(and is also removed in this PR).
There’s another attribute `retry_exponential_backoff` that seems to be
related, but it manages its default elsewhere, not using this constant.
--
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]