Skip to content

Commit

Permalink
docstring update (apache#41929)
Browse files Browse the repository at this point in the history
  • Loading branch information
gopidesupavan authored Sep 2, 2024
1 parent 00db98b commit 86af316
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions airflow/providers/cncf/kubernetes/hooks/kubernetes.py
Original file line number Diff line number Diff line change
Expand Up @@ -845,6 +845,7 @@ async def wait_until_container_complete(
: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)
Expand All @@ -862,6 +863,7 @@ async def wait_until_container_started(
: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)
Expand Down

0 comments on commit 86af316

Please sign in to comment.