We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93c3c40 commit 10f1c73Copy full SHA for 10f1c73
repl/scala-2.10/src/main/scala/org/apache/spark/repl/SparkILoop.scala
@@ -206,6 +206,7 @@ class SparkILoop(
206
// e.g. file:/C:/my/path.jar -> C:/my/path.jar
207
SparkILoop.getAddedJars.map { jar => new URI(jar).getPath.stripPrefix("/") }
208
} else {
209
+ // We need new URI(jar).getPath here for the case that `jar` includes encoded white space (%20).
210
SparkILoop.getAddedJars.map { jar => new URI(jar).getPath}
211
}
212
// work around for Scala bug
0 commit comments