File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
alpha/src/main/scala/org/apache/spark/deploy/yarn
stable/src/main/scala/org/apache/spark/deploy/yarn Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -496,7 +496,8 @@ object Client {
496496 }
497497
498498 val cachedSecondaryJarLinks =
499- sparkConf.getOption(CONF_SPARK_YARN_SECONDARY_JARS ).getOrElse(" " ).split(" ," ).filter(_.nonEmpty)
499+ sparkConf.getOption(CONF_SPARK_YARN_SECONDARY_JARS ).getOrElse(" " ).split(" ," )
500+ .filter(_.nonEmpty)
500501
501502 // Normally the users app.jar is last in case conflicts with spark jars
502503 val userClasspathFirst = sparkConf.get(" spark.yarn.user.classpath.first" , " false" ).toBoolean
Original file line number Diff line number Diff line change @@ -510,7 +510,8 @@ object Client {
510510 }
511511
512512 val cachedSecondaryJarLinks =
513- sparkConf.getOption(CONF_SPARK_YARN_SECONDARY_JARS ).getOrElse(" " ).split(" ," ).filter(_.nonEmpty)
513+ sparkConf.getOption(CONF_SPARK_YARN_SECONDARY_JARS ).getOrElse(" " ).split(" ," )
514+ .filter(_.nonEmpty)
514515
515516 // Normally the users app.jar is last in case conflicts with spark jars
516517 val userClasspathFirst = sparkConf.get(" spark.yarn.user.classpath.first" , " false" ).toBoolean
You can’t perform that action at this time.
0 commit comments