Skip to content

Commit

Permalink
Oops, never do it.
Browse files Browse the repository at this point in the history
  • Loading branch information
aarondav committed May 8, 2015
1 parent a5d9432 commit 3c2d6ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class LocalSparkCluster(
// Disable REST server on Master in this mode unless otherwise specified
val _conf = conf.clone()
.setIfMissing("spark.master.rest.enabled", "false")
.setIfMissing("spark.shuffle.service.enabled", "false")
.set("spark.shuffle.service.enabled", "false")

/* Start the Master */
val (masterSystem, masterPort, _, _) = Master.startSystemAndActor(localHostname, 0, 0, _conf)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class NettyBlockTransferService(conf: SparkConf, securityManager: SecurityManage
securityManager.isSaslEncryptionEnabled()))
}
transportContext = new TransportContext(transportConf, rpcHandler)
clientFactory = transportContext.createClientFactory(bootstrap.toList)
clientFactory = transportContext.createClientFactory(clientBootstrap.toList)
server = createServer(serverBootstrap.toList)
appId = conf.getAppId
logInfo("Server created on " + server.getPort)
Expand Down

0 comments on commit 3c2d6ed

Please sign in to comment.