This is an automated email from the ASF dual-hosted git repository.
feiwang pushed a commit to branch branch-1.9
in repository https://gitbox.apache.org/repos/asf/kyuubi.git
The following commit(s) were added to refs/heads/branch-1.9 by this push:
new d655991289 [KYUUBI #7041][FOLLOWUP] Fix build for
SparkOnKubernetesTestsSuite
d655991289 is described below
commit d655991289b30fc00b019fdb035967140723a296
Author: Wang, Fei <[email protected]>
AuthorDate: Wed Apr 23 22:47:15 2025 -0700
[KYUUBI #7041][FOLLOWUP] Fix build for SparkOnKubernetesTestsSuite
### Why are the changes needed?
Fix build issue after #7041
### How was this patch tested?
GA.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #7042 from turboFei/fix_build.
Closes #7041
d026bf554 [Wang, Fei] fix build
Authored-by: Wang, Fei <[email protected]>
Signed-off-by: Wang, Fei <[email protected]>
(cherry picked from commit 9e8bdf51a2b179474b27bf2bbc0765c4684b0da6)
Signed-off-by: Wang, Fei <[email protected]>
---
.../kyuubi/kubernetes/test/spark/SparkOnKubernetesTestsSuite.scala | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/integration-tests/kyuubi-kubernetes-it/src/test/scala/org/apache/kyuubi/kubernetes/test/spark/SparkOnKubernetesTestsSuite.scala
b/integration-tests/kyuubi-kubernetes-it/src/test/scala/org/apache/kyuubi/kubernetes/test/spark/SparkOnKubernetesTestsSuite.scala
index 601db35447..b9d2d20108 100644
---
a/integration-tests/kyuubi-kubernetes-it/src/test/scala/org/apache/kyuubi/kubernetes/test/spark/SparkOnKubernetesTestsSuite.scala
+++
b/integration-tests/kyuubi-kubernetes-it/src/test/scala/org/apache/kyuubi/kubernetes/test/spark/SparkOnKubernetesTestsSuite.scala
@@ -138,7 +138,7 @@ class KyuubiOperationKubernetesClusterClientModeSuite
extends SparkClientModeOnKubernetesSuiteBase {
private lazy val k8sOperation: KubernetesApplicationOperation = {
val operation = new KubernetesApplicationOperation
- operation.initialize(conf)
+ operation.initialize(conf, None)
operation
}
@@ -187,7 +187,7 @@ class KyuubiOperationKubernetesClusterClusterModeSuite
extends SparkClusterModeOnKubernetesSuiteBase {
private lazy val k8sOperation: KubernetesApplicationOperation = {
val operation = new KubernetesApplicationOperation
- operation.initialize(conf)
+ operation.initialize(conf, None)
operation
}