Merge branch 'wip-scala-2.10' into akka-bug-fix

This commit is contained in:
Prashant Sharma 2013-12-06 13:32:15 +05:30
commit c9cd2af71e
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@ private[spark] class SimrSchedulerBackend(
override def start() {
super.start()
val driverUrl = "akka://spark@%s:%s/user/%s".format(
val driverUrl = "akka.tcp://spark@%s:%s/user/%s".format(
System.getProperty("spark.driver.host"), System.getProperty("spark.driver.port"),
CoarseGrainedSchedulerBackend.ACTOR_NAME)

View file

@ -168,7 +168,7 @@ class WorkerLauncher(args: ApplicationMasterArguments, conf: Configuration) exte
System.setProperty("spark.driver.host", driverHost)
System.setProperty("spark.driver.port", driverPort.toString)
val driverUrl = "akka://spark@%s:%s/user/%s".format(
val driverUrl = "akka.tcp://spark@%s:%s/user/%s".format(
driverHost, driverPort.toString, CoarseGrainedSchedulerBackend.ACTOR_NAME)
actor = actorSystem.actorOf(Props(new MonitorActor(driverUrl)), name = "YarnAM")