Github user aarondav commented on a diff in the pull request:
https://github.com/apache/spark/pull/781#discussion_r13263105
--- Diff: repl/src/test/scala/org/apache/spark/repl/ReplSuite.scala ---
@@ -44,15 +44,19 @@ class ReplSuite extends FunSuite {
}
}
}
+ val classpath = paths.mkString(File.pathSeparator)
+ System.setProperty("spark.executor.extraClassPath", classpath)
--- End diff --
For the sake of defensive programming, would you mind getting the previous
value of `spark.executor.extraClassPath` and restoring it afterwards, instead
of clearing it? The `spark.driver.port` value is a different situation, where
Spark internally sets that parameter, and would reuse it if it remains set.
---
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.
---