Skip to content

Commit 8867a09

Browse files
committed
A few more naming things (minor)
1 parent 19464ad commit 8867a09

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bin/spark-class

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ export CLASSPATH
156156

157157
# In Spark submit client mode, the driver is launched in the same JVM as Spark submit itself.
158158
# Here we must parse the properties file for relevant "spark.driver.*" configs before launching
159-
# the driver JVM itself. Instead of handling this complexity in BASH, we launch a separate JVM
159+
# the driver JVM itself. Instead of handling this complexity in Bash, we launch a separate JVM
160160
# to prepare the launch environment of this driver JVM.
161161

162162
if [ -n "$SPARK_SUBMIT_BOOTSTRAP_DRIVER" ]; then

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import org.apache.spark.util.{RedirectThread, Utils}
2727
* Launch an application through Spark submit in client mode with the appropriate classpath,
2828
* library paths, java options and memory. These properties of the JVM must be set before the
2929
* driver JVM is launched. The sole purpose of this class is to avoid handling the complexity
30-
* of parsing the properties file for such relevant configs in BASH.
30+
* of parsing the properties file for such relevant configs in Bash.
3131
*
3232
* Usage: org.apache.spark.deploy.SparkSubmitDriverBootstrapper <application args>
3333
*/
@@ -69,7 +69,7 @@ private[spark] object SparkSubmitDriverBootstrapper {
6969

7070
// Favor Spark submit arguments over the equivalent configs in the properties file.
7171
// Note that we do not actually use the Spark submit values for library path, classpath,
72-
// and java opts here, because we have already captured them in BASH.
72+
// and Java opts here, because we have already captured them in Bash.
7373
val newDriverMemory = submitDriverMemory.getOrElse(confDriverMemory)
7474
val newLibraryPath =
7575
if (submitLibraryPath.isDefined) {

0 commit comments

Comments
 (0)