aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorReynold Xin <rxin@apache.org>2013-10-10 19:24:00 -0700
committerReynold Xin <rxin@apache.org>2013-10-10 19:24:00 -0700
commit058508b625ba69ce6c3f0a21595bb731182e0fc8 (patch)
treee8091d3af9aae50f12344b49e90bab0e0dd36270 /core
parentec2e2ed1e1b2fb313f087cc0b0bbb33d3e6c5f75 (diff)
downloadspark-058508b625ba69ce6c3f0a21595bb731182e0fc8.tar.gz
spark-058508b625ba69ce6c3f0a21595bb731182e0fc8.tar.bz2
spark-058508b625ba69ce6c3f0a21595bb731182e0fc8.zip
Changed the name of the local cluster executor from local to localhost.
Diffstat (limited to 'core')
-rw-r--r--core/src/main/scala/org/apache/spark/scheduler/local/LocalScheduler.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/scala/org/apache/spark/scheduler/local/LocalScheduler.scala b/core/src/main/scala/org/apache/spark/scheduler/local/LocalScheduler.scala
index cc16c688ca..0a6f4df902 100644
--- a/core/src/main/scala/org/apache/spark/scheduler/local/LocalScheduler.scala
+++ b/core/src/main/scala/org/apache/spark/scheduler/local/LocalScheduler.scala
@@ -50,7 +50,7 @@ private[spark]
class LocalActor(localScheduler: LocalScheduler, private var freeCores: Int)
extends Actor with Logging {
- val executor = new Executor("local", "local", Seq.empty, isLocal = true)
+ val executor = new Executor("localhost", "localhost", Seq.empty, isLocal = true)
def receive = {
case LocalReviveOffers =>