This is an automated email from the ASF dual-hosted git repository.
eladkal 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 86af316c87 docstring update (#41929)
86af316c87 is described below
commit 86af316c8716c0535e8bebb95c10dfa8227a5049
Author: GPK <[email protected]>
AuthorDate: Mon Sep 2 12:36:27 2024 +0100
docstring update (#41929)
---
airflow/providers/cncf/kubernetes/hooks/kubernetes.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/airflow/providers/cncf/kubernetes/hooks/kubernetes.py
b/airflow/providers/cncf/kubernetes/hooks/kubernetes.py
index c3b473bea3..9f7e33696e 100644
--- a/airflow/providers/cncf/kubernetes/hooks/kubernetes.py
+++ b/airflow/providers/cncf/kubernetes/hooks/kubernetes.py
@@ -845,6 +845,7 @@ class AsyncKubernetesHook(KubernetesHook):
:param name: Name of Pod to fetch.
:param namespace: Namespace of the Pod.
:param container_name: name of the container within the pod to monitor
+ :param poll_interval: Interval in seconds between polling the
container status
"""
while True:
pod = await self.get_pod(name=name, namespace=namespace)
@@ -862,6 +863,7 @@ class AsyncKubernetesHook(KubernetesHook):
:param name: Name of Pod to fetch.
:param namespace: Namespace of the Pod.
:param container_name: name of the container within the pod to monitor
+ :param poll_interval: Interval in seconds between polling the
container status
"""
while True:
pod = await self.get_pod(name=name, namespace=namespace)