hehuiyuan opened a new pull request #24123: [SPARK-27184][CORE]Replace 'spark.jars' & 'spark.files' with the variables of this confi… URL: https://github.com/apache/spark/pull/24123 ## What changes were proposed in this pull request? [](https://issues.apache.org/jira/browse/SPARK-27184) In the org.apache.spark.internal.object,we define the variables of FILES and JARS,we can use them instead of "spark.jars" and "spark.files". private[spark] val JARS = ConfigBuilder("spark.jars") .stringConf .toSequence .createWithDefault(Nil) private[spark] val FILES = ConfigBuilder("spark.files") .stringConf .toSequence .createWithDefault(Nil)
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
