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 0f3ceb5 commit 6d4f47eCopy full SHA for 6d4f47e
core/src/test/scala/org/apache/spark/deploy/ClientSuite.scala
@@ -24,6 +24,7 @@ class ClientSuite extends FunSuite with Matchers {
24
test("correctly validates driver jar URL's") {
25
ClientArguments.isValidJarUrl("http://someHost:8080/foo.jar") should be (true)
26
ClientArguments.isValidJarUrl("file://some/path/to/a/jarFile.jar") should be (true)
27
+ ClientArguments.isValidJarUrl("file:///some/path/to/a/jarFile.jar") should be (true)
28
ClientArguments.isValidJarUrl("hdfs://someHost:1234/foo.jar") should be (true)
29
30
ClientArguments.isValidJarUrl("hdfs://someHost:1234/foo") should be (false)
0 commit comments