Skip to content
Closed
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
Merge branch 'master' into remove-akka-serialization
  • Loading branch information
zsxwing committed Jul 15, 2015
commit fc0fca3c7d3b9fb522e79adaa04a01358a8cf9f6
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ private[master] class Master(
new FileSystemRecoveryModeFactory(conf, serializer)
(fsFactory.createPersistenceEngine(), fsFactory.createLeaderElectionAgent(this))
case "CUSTOM" =>
val clazz = Class.forName(conf.get("spark.deploy.recoveryMode.factory"))
val clazz = Utils.classForName(conf.get("spark.deploy.recoveryMode.factory"))
val factory = clazz.getConstructor(classOf[SparkConf], classOf[Serializer])
.newInstance(conf, serializer)
.asInstanceOf[StandaloneRecoveryModeFactory]
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.