Skip to content

Commit

Permalink
Remove outdated TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewor14 committed Aug 5, 2014
1 parent bfbab28 commit e837cde
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/main/scala/org/apache/spark/deploy/Client.scala
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ object Client {
}

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

if (!driverArgs.logLevel.isGreaterOrEqual(Level.WARN)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ private[spark] class Executor(
// Initialize Spark environment (using system properties read above)
private val env = {
if (!isLocal) {
val port = conf.getInt("spark.executor.env.port", 0) // TODO: document this
val port = conf.getInt("spark.executor.env.port", 0)
val _env = SparkEnv.create(conf, executorId, slaveHostname, port,
isDriver = false, isLocal = false)
SparkEnv.set(_env)
Expand Down

0 comments on commit e837cde

Please sign in to comment.