From 7c6d5658298447ba440cd424d232b4d062573a69 Mon Sep 17 00:00:00 2001 From: "Wang, Fei" Date: Wed, 2 Jul 2025 12:59:46 +0800 Subject: [PATCH] [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 Signed-off-by: Cheng Pan --- .../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 42e8e13bc..b349ef160 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) } } }