Skip to content

Commit

Permalink
Doesn't quite work
Browse files Browse the repository at this point in the history
  • Loading branch information
holdenk committed Apr 8, 2014
1 parent 8d2241e commit 16aecd1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ private[spark] class ExecutorURLClassLoader(urls: Array[URL], parent: ClassLoade
try {
userClassLoader.findClass(name)
} catch {
case e: ClassNotFoundException => childClassLoader.findClass(name)
case e: ClassNotFoundException => {
childClassLoader.findClass(name)
}
}
}
}
Expand Down
Binary file modified core/src/test/resources/FakeClass.class
Binary file not shown.
Binary file added core/src/test/resources/fake-spark-class.jar
Binary file not shown.

0 comments on commit 16aecd1

Please sign in to comment.