Skip to content

Commit e837cde

Browse files
committed
Remove outdated TODOs
1 parent bfbab28 commit e837cde

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ object Client {
146146
}
147147

148148
val conf = new SparkConf()
149-
val port = conf.getInt("spark.standalone.client.port", 0) // TODO: document this
149+
val port = conf.getInt("spark.standalone.client.port", 0)
150150
val driverArgs = new ClientArguments(args)
151151

152152
if (!driverArgs.logLevel.isGreaterOrEqual(Level.WARN)) {

core/src/main/scala/org/apache/spark/executor/Executor.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ private[spark] class Executor(
8484
// Initialize Spark environment (using system properties read above)
8585
private val env = {
8686
if (!isLocal) {
87-
val port = conf.getInt("spark.executor.env.port", 0) // TODO: document this
87+
val port = conf.getInt("spark.executor.env.port", 0)
8888
val _env = SparkEnv.create(conf, executorId, slaveHostname, port,
8989
isDriver = false, isLocal = false)
9090
SparkEnv.set(_env)

0 commit comments

Comments
 (0)