Skip to content

Commit 8843562

Browse files
committed
Fix compilation issues...
1 parent 75ee6b4 commit 8843562

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/scala/org/apache/spark/deploy/SparkSubmit.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ object SparkSubmit {
200200
OptionAssigner(args.totalExecutorCores, STANDALONE | MESOS, ALL_DEPLOY_MODES,
201201
sysProp = "spark.cores.max"),
202202
OptionAssigner(args.files, LOCAL | STANDALONE | MESOS, ALL_DEPLOY_MODES,
203-
sysProp = "spark.files")
203+
sysProp = "spark.files"),
204204

205205
// Only process driver specific options for cluster mode here,
206206
// because they have already been processed in bash for client mode
@@ -209,7 +209,7 @@ object SparkSubmit {
209209
OptionAssigner(args.driverExtraJavaOptions, STANDALONE | YARN, CLUSTER,
210210
sysProp = "spark.driver.extraJavaOptions"),
211211
OptionAssigner(args.driverExtraLibraryPath, STANDALONE | YARN, CLUSTER,
212-
sysProp = "spark.driver.extraLibraryPath"),
212+
sysProp = "spark.driver.extraLibraryPath")
213213
)
214214

215215
// In client mode, launch the application main class directly

0 commit comments

Comments
 (0)