This is an automated email from the ASF dual-hosted git repository.
feiwang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kyuubi.git
The following commit(s) were added to refs/heads/master by this push:
new 9e8bdf51a2 [KYUUBI #7041][FOLLOWUP] Fix build for
SparkOnKubernetesTestsSuite
9e8bdf51a2 is described below
commit 9e8bdf51a2b179474b27bf2bbc0765c4684b0da6
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]>
---
.../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 d6ef69d088..239454f49e 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
@@ -139,7 +139,7 @@ class KyuubiOperationKubernetesClusterClientModeSuite
extends SparkClientModeOnKubernetesSuiteBase {
private lazy val k8sOperation: KubernetesApplicationOperation = {
val operation = new KubernetesApplicationOperation
- operation.initialize(conf)
+ operation.initialize(conf, None)
operation
}
@@ -188,7 +188,7 @@ class KyuubiOperationKubernetesClusterClusterModeSuite
extends SparkClusterModeOnKubernetesSuiteBase {
private lazy val k8sOperation: KubernetesApplicationOperation = {
val operation = new KubernetesApplicationOperation
- operation.initialize(conf)
+ operation.initialize(conf, None)
operation
}