You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by an...@apache.org on 2015/07/27 06:45:55 UTC

spark git commit: [HOTFIX] Fix compile in MasterSuite

Repository: spark
Updated Branches:
  refs/heads/branch-1.4 d0ef42c4e -> 5aed92613


[HOTFIX] Fix compile in MasterSuite


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/5aed9261
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/5aed9261
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/5aed9261

Branch: refs/heads/branch-1.4
Commit: 5aed9261380a183cc7aa292e1cd63f22e772fa5c
Parents: d0ef42c
Author: Andrew Or <an...@databricks.com>
Authored: Sun Jul 26 21:45:29 2015 -0700
Committer: Andrew Or <an...@databricks.com>
Committed: Sun Jul 26 21:45:29 2015 -0700

----------------------------------------------------------------------
 .../test/scala/org/apache/spark/deploy/master/MasterSuite.scala    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/5aed9261/core/src/test/scala/org/apache/spark/deploy/master/MasterSuite.scala
----------------------------------------------------------------------
diff --git a/core/src/test/scala/org/apache/spark/deploy/master/MasterSuite.scala b/core/src/test/scala/org/apache/spark/deploy/master/MasterSuite.scala
index bde349c..e585c98 100644
--- a/core/src/test/scala/org/apache/spark/deploy/master/MasterSuite.scala
+++ b/core/src/test/scala/org/apache/spark/deploy/master/MasterSuite.scala
@@ -357,7 +357,7 @@ class MasterSuite extends SparkFunSuite with Matchers with Eventually with Priva
 
   private def makeMaster(conf: SparkConf = new SparkConf): Master = {
     val securityMgr = new SecurityManager(conf)
-    val rpcEnv = RpcEnv.create(Master.SYSTEM_NAME, "localhost", 7077, conf, securityMgr)
+    val rpcEnv = RpcEnv.create(Master.systemName, "localhost", 7077, conf, securityMgr)
     val master = new Master(rpcEnv, rpcEnv.address, 8080, securityMgr, conf)
     master
   }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org