Skip to content

Commit 16aecd1

Browse files
committed
Doesn't quite work
1 parent 8d2241e commit 16aecd1

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

core/src/main/scala/org/apache/spark/executor/ExecutorURLClassLoader.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ private[spark] class ExecutorURLClassLoader(urls: Array[URL], parent: ClassLoade
5353
try {
5454
userClassLoader.findClass(name)
5555
} catch {
56-
case e: ClassNotFoundException => childClassLoader.findClass(name)
56+
case e: ClassNotFoundException => {
57+
childClassLoader.findClass(name)
58+
}
5759
}
5860
}
5961
}
25 Bytes
Binary file not shown.
2.72 KB
Binary file not shown.

0 commit comments

Comments
 (0)