potiuk commented on code in PR #36428:
URL: https://github.com/apache/airflow/pull/36428#discussion_r1482240350


##########
airflow/providers/http/hooks/http.py:
##########
@@ -258,7 +258,8 @@ def run_with_advanced_retry(self, _retry_args: dict[Any, 
Any], *args: Any, **kwa
         """
         self._retry_obj = tenacity.Retrying(**_retry_args)
 
-        return self._retry_obj(self.run, *args, **kwargs)
+        # TODO: remove ignore type when 
https://github.com/jd/tenacity/issues/428 is resolved
+        return self._retry_obj(self.run, *args, **kwargs)  # type: ignore

Review Comment:
   Yes



-- 
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: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to