This is an automated email from the ASF dual-hosted git repository.
potiuk 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 530495c45b Describe behaviour in docstring correctly (#41458)
530495c45b is described below
commit 530495c45b3094b38a7b3e37eeab2de8c21c64d7
Author: Bas Harenslak <[email protected]>
AuthorDate: Wed Aug 14 12:15:56 2024 +0200
Describe behaviour in docstring correctly (#41458)
---
airflow/providers/cncf/kubernetes/operators/pod.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow/providers/cncf/kubernetes/operators/pod.py
b/airflow/providers/cncf/kubernetes/operators/pod.py
index 6b3b635d22..352c0773e5 100644
--- a/airflow/providers/cncf/kubernetes/operators/pod.py
+++ b/airflow/providers/cncf/kubernetes/operators/pod.py
@@ -1004,7 +1004,7 @@ class KubernetesPodOperator(BaseOperator):
return None
def patch_already_checked(self, pod: k8s.V1Pod, *, reraise=True):
- """Add an "already checked" annotation to ensure we don't reattach on
retries."""
+ """Add an "already checked" label to ensure we don't reattach on
retries."""
with _optionally_suppress(reraise=reraise):
self.client.patch_namespaced_pod(
name=pod.metadata.name,