Skip to content

Commit

Permalink
Fix the executorclassloader
Browse files Browse the repository at this point in the history
  • Loading branch information
holdenk committed Apr 8, 2014
1 parent 1955232 commit cf0cac9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ private[spark] class Executor(
val userClassPathFirst: java.lang.Boolean =
conf.getBoolean("spark.classpath.userClassPathFirst", false)
try {
val klass = Class.forName("org.apache.spark.repl.FlexibleExecutorClassLoader")
val klass = Class.forName("org.apache.spark.repl.ExecutorClassLoader")
.asInstanceOf[Class[_ <: ClassLoader]]
val constructor = klass.getConstructor(classOf[String], classOf[ClassLoader],
classOf[Boolean])
Expand Down

0 comments on commit cf0cac9

Please sign in to comment.