eladkal commented on code in PR #33718:
URL: https://github.com/apache/airflow/pull/33718#discussion_r1867271749
##########
providers/src/airflow/providers/standard/sensors/time_delta.py:
##########
@@ -91,7 +91,11 @@ def execute(self, context: Context) -> bool | NoReturn:
raise AirflowSkipException("Skipping due to soft_fail is set
to True.") from e
raise
- self.defer(trigger=trigger, method_name="execute_complete")
+ self.defer(
+ trigger=trigger,
+ method_name="execute_complete",
+ timeout=self.timeout,
+ )
Review Comment:
Just making sure - is this change compatible with Airflow >= 2.8?
--
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]