This is an automated email from the ASF dual-hosted git repository.
shahar 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 5c53a1e59da Fix GKEStartPodOperator docstring default for
on_finish_action (#60960)
5c53a1e59da is described below
commit 5c53a1e59dae239238044f07784faf0f437f7418
Author: Ayush Srivastava <[email protected]>
AuthorDate: Sat Jan 24 22:31:22 2026 +0530
Fix GKEStartPodOperator docstring default for on_finish_action (#60960)
---
.../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 f836561a0c9..f66b142cd51 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
@@ -616,7 +616,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 `delete_pod`, but this will be changed in the next
major release of this provider.
+ Default is `delete_pod`.
:param deferrable: Run operator in the deferrable mode.
"""