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 c991c137f75 Fix incorrect default docstring for gke_finish_action in
GKEStartPodOperator (#58349)
c991c137f75 is described below
commit c991c137f750fd79ee67f387ffe8395ba8d0f9c1
Author: Yax patel <[email protected]>
AuthorDate: Mon Nov 17 03:43:09 2025 +0530
Fix incorrect default docstring for gke_finish_action in
GKEStartPodOperator (#58349)
---
.../src/airflow/providers/google/cloud/operators/kubernetes_engine.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/providers/google/src/airflow/providers/google/cloud/operators/kubernetes_engine.py
b/providers/google/src/airflow/providers/google/cloud/operators/kubernetes_engine.py
index 72dfb5788ea..3fa2df47d68 100644
---
a/providers/google/src/airflow/providers/google/cloud/operators/kubernetes_engine.py
+++
b/providers/google/src/airflow/providers/google/cloud/operators/kubernetes_engine.py
@@ -617,7 +617,7 @@ class GKEStartPodOperator(GKEOperatorMixin,
KubernetesPodOperator):
:param on_finish_action: What to do when the pod reaches its final state,
or the execution is interrupted.
If "delete_pod", the pod will be deleted regardless its state; if
"delete_succeeded_pod",
only succeeded pod will be deleted. You can set to "keep_pod" to keep
the pod.
- Current default is `keep_pod`, but this will be changed in the next
major release of this provider.
+ Current default is `delete_pod`, but this will be changed in the next
major release of this provider.
:param deferrable: Run operator in the deferrable mode.
"""