Skip to content

Commit

Permalink
Remove spark.worker.watcher.port
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewor14 committed Aug 5, 2014
1 parent 151327a commit 2551eb2
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@ object DriverWrapper {
args.toList match {
case workerUrl :: mainClass :: extraArgs =>
val conf = new SparkConf()
val watcherPort = conf.getInt("spark.worker.watcher.port", 0) // TODO: document this
val (actorSystem, _) = AkkaUtils.createActorSystem("Driver",
Utils.localHostName(), watcherPort, conf, new SecurityManager(conf))
Utils.localHostName(), 0, conf, new SecurityManager(conf))
actorSystem.actorOf(Props(classOf[WorkerWatcher], workerUrl), name = "workerWatcher")

// Delegate to supplied main class
Expand Down

0 comments on commit 2551eb2

Please sign in to comment.