ephraimbuddy commented on code in PR #34914: URL: https://github.com/apache/airflow/pull/34914#discussion_r1451738446
########## airflow/models/baseoperator.py: ########## @@ -124,7 +124,7 @@ def parse_retries(retries: Any) -> int | None: - if retries is None or isinstance(retries, int): + if retries is None or type(retries) == int: Review Comment: Can you add a test for this -- 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]
