Skip to content

Commit cf0270c

Browse files
committed
allConfigs
1 parent a0391af commit cf0270c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

kyuubi-server/src/main/scala/org/apache/kyuubi/engine/spark/SparkBatchProcessBuilder.scala

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,11 @@ class SparkBatchProcessBuilder(
5252
// tag batch application
5353
KyuubiApplicationManager.tagApplication(batchId, "spark", clusterManager(), batchKyuubiConf)
5454

55-
val allConfigs = batchKyuubiConf.getAll ++
56-
sparkAppNameConf() ++
57-
engineLogPathConf() ++
58-
appendPodNameConf(batchConf)
55+
val allConfigs = Seq(
56+
batchKyuubiConf.getAll,
57+
sparkAppNameConf(),
58+
engineLogPathConf(),
59+
appendPodNameConf(batchConf)).flatten
5960
buffer ++= confKeyValues(allConfigs)
6061

6162
setupKerberos(buffer)

0 commit comments

Comments
 (0)