iameugenejo commented on issue #13086: URL: https://github.com/apache/airflow/issues/13086#issuecomment-767859672
patch for `/airflow/models/taskinstance.py` I'm using to workaround is below: ```patch 880c880 < delay = min(self.task.max_retry_delay, delay) --- > delay = timedelta(seconds=min(self.task.max_retry_delay, delay.total_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. For queries about this service, please contact Infrastructure at: [email protected]
