Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[HOTFIX] Fix compile in MasterSuite
  • Loading branch information
Andrew Or committed Jul 27, 2015
commit 5aed9261380a183cc7aa292e1cd63f22e772fa5c
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down