This is an automated email from the ASF dual-hosted git repository.

henry3260 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new b61f35966ca Remove stale is_async docstring param from await_pod_start 
(#72261)
b61f35966ca is described below

commit b61f35966ca3c445758fe8a45a29e732857f0328
Author: Jyun-An Chen <[email protected]>
AuthorDate: Sun Aug 30 02:12:51 2026 +0800

    Remove stale is_async docstring param from await_pod_start (#72261)
    
    The function determines async mode internally via isinstance check
    rather than accepting an is_async parameter, so the docstring was
    describing an argument that doesn't exist in the signature.
---
 .../src/airflow/providers/cncf/kubernetes/utils/pod_manager.py           | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/providers/cncf/kubernetes/src/airflow/providers/cncf/kubernetes/utils/pod_manager.py
 
b/providers/cncf/kubernetes/src/airflow/providers/cncf/kubernetes/utils/pod_manager.py
index 926e59aab1e..0914de4e90a 100644
--- 
a/providers/cncf/kubernetes/src/airflow/providers/cncf/kubernetes/utils/pod_manager.py
+++ 
b/providers/cncf/kubernetes/src/airflow/providers/cncf/kubernetes/utils/pod_manager.py
@@ -162,7 +162,6 @@ async def await_pod_start(
     :param schedule_timeout: Maximum time (in seconds) to wait for the pod to 
be scheduled.
     :param startup_timeout: Maximum time (in seconds) to wait for the pod to 
start running after being scheduled.
     :param check_interval: Interval (in seconds) between status checks.
-    :param is_async: Set to True if called in an async context; otherwise, 
False.
     """
     pod_manager.log.info("::group::Waiting up to %ss to get the POD 
scheduled...", schedule_timeout)
     pod_was_scheduled = False

Reply via email to