This is an automated email from the ASF dual-hosted git repository.
chengpan pushed a commit to branch branch-1.10
in repository https://gitbox.apache.org/repos/asf/kyuubi.git
The following commit(s) were added to refs/heads/branch-1.10 by this push:
new 7c6d565829 [KYUUBI #7101][1.10][FOLLOWUP] Fix code broken
7c6d565829 is described below
commit 7c6d5658298447ba440cd424d232b4d062573a69
Author: Wang, Fei <[email protected]>
AuthorDate: Wed Jul 2 12:59:46 2025 +0800
[KYUUBI #7101][1.10][FOLLOWUP] Fix code broken
### Why are the changes needed?
Address comment:
https://github.com/apache/kyuubi/pull/7101#issuecomment-3007263290
### How was this patch tested?
GA.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #7116 from turboFei/fix_conflicts.
Closes #7101
f25f487e8 [Wang, Fei] [KYUUBI #7101][1.10][FOLLOWUP] Fix code broken
Authored-by: Wang, Fei <[email protected]>
Signed-off-by: Cheng Pan <[email protected]>
---
.../scala/org/apache/kyuubi/engine/KubernetesApplicationOperation.scala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/kyuubi-server/src/main/scala/org/apache/kyuubi/engine/KubernetesApplicationOperation.scala
b/kyuubi-server/src/main/scala/org/apache/kyuubi/engine/KubernetesApplicationOperation.scala
index 42e8e13bc9..b349ef160c 100644
---
a/kyuubi-server/src/main/scala/org/apache/kyuubi/engine/KubernetesApplicationOperation.scala
+++
b/kyuubi-server/src/main/scala/org/apache/kyuubi/engine/KubernetesApplicationOperation.scala
@@ -107,7 +107,7 @@ class KubernetesApplicationOperation extends
ApplicationOperation with Logging {
if (appInfoStore.get(kyuubiUniqueKey) == null) {
updateApplicationState(kubernetesInfo, pod, eventType)
}
- markApplicationTerminated(kubernetesInfo, pod, eventType)
+ markApplicationTerminated(pod, eventType)
}
}
}