Skip to content

Commit c5696f4

Browse files
committed
fix line too long
1 parent b085f10 commit c5696f4

File tree

2 files changed

+4
-2
lines changed
  • yarn
    • alpha/src/main/scala/org/apache/spark/deploy/yarn
    • stable/src/main/scala/org/apache/spark/deploy/yarn

2 files changed

+4
-2
lines changed

yarn/alpha/src/main/scala/org/apache/spark/deploy/yarn/Client.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

yarn/stable/src/main/scala/org/apache/spark/deploy/yarn/Client.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)