dstandish commented on code in PR #33718:
URL: https://github.com/apache/airflow/pull/33718#discussion_r1305226920
##########
airflow/exceptions.py:
##########
@@ -366,6 +370,8 @@ def __init__(
self.kwargs = kwargs
self.timeout = timeout
# Check timeout type at runtime
+ if isinstance(self.timeout, (int, float)):
Review Comment:
this is just for convenience since BaseSensorOperator coalesces timeout from
timedelta to seconds.
--
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]