Github user srowen commented on a diff in the pull request:
https://github.com/apache/spark/pull/4130#discussion_r23279994
--- Diff:
repl/src/main/scala/org/apache/spark/repl/ExecutorClassLoader.scala ---
@@ -91,7 +91,14 @@ class ExecutorClassLoader(conf: SparkConf, classUri:
String, parent: ClassLoader
inputStream.close()
Some(defineClass(name, bytes, 0, bytes.length))
} catch {
- case e: Exception => None
+ case e: FileNotFoundException =>
+ // We did not find the class
+ logDebug(s"Did not load class $name from REPL class server at
$uri", e)
--- End diff --
This shouldn't be debug level? Or is it a common case? What is the
reference to a class server?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]