You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by jo...@apache.org on 2015/02/08 06:59:26 UTC

spark git commit: [HOTFIX] use --driver-java-options instead of --conf for branch-1.0

Repository: spark
Updated Branches:
  refs/heads/branch-1.0 a1425db96 -> 4b9234905


[HOTFIX] use --driver-java-options instead of --conf for branch-1.0

This fixes a build-break caused by b78422ae170b89fa09e8910e247cbfecc23442f8,
a previous hotfix.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/4b923490
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/4b923490
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/4b923490

Branch: refs/heads/branch-1.0
Commit: 4b9234905584189af8b6733a2a3887a15b0ebb2a
Parents: a1425db
Author: Josh Rosen <jo...@databricks.com>
Authored: Mon Jan 12 16:04:45 2015 -0800
Committer: Josh Rosen <jo...@databricks.com>
Committed: Sat Feb 7 21:57:54 2015 -0800

----------------------------------------------------------------------
 .../test/scala/org/apache/spark/deploy/SparkSubmitSuite.scala    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/4b923490/core/src/test/scala/org/apache/spark/deploy/SparkSubmitSuite.scala
----------------------------------------------------------------------
diff --git a/core/src/test/scala/org/apache/spark/deploy/SparkSubmitSuite.scala b/core/src/test/scala/org/apache/spark/deploy/SparkSubmitSuite.scala
index 27e1ad9..da79980 100644
--- a/core/src/test/scala/org/apache/spark/deploy/SparkSubmitSuite.scala
+++ b/core/src/test/scala/org/apache/spark/deploy/SparkSubmitSuite.scala
@@ -260,7 +260,7 @@ class SparkSubmitSuite extends FunSuite with ShouldMatchers with ResetSystemProp
       "--class", SimpleApplicationTest.getClass.getName.stripSuffix("$"),
       "--name", "testApp",
       "--master", "local",
-      "--conf", "spark.ui.enabled=false",
+      "--driver-java-options", "-Dspark.ui.enabled=false",
       unusedJar.toString)
     runSparkSubmit(args)
   }
@@ -275,7 +275,7 @@ class SparkSubmitSuite extends FunSuite with ShouldMatchers with ResetSystemProp
       "--name", "testApp",
       "--master", "local-cluster[2,1,512]",
       "--jars", jarsString,
-      "--conf", "spark.ui.enabled=false",
+      "--driver-java-options", "-Dspark.ui.enabled=false",
       unusedJar.toString)
     runSparkSubmit(args)
   }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org