aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorJosh Rosen <joshrosen@databricks.com>2014-12-12 12:38:37 -0800
committerJosh Rosen <joshrosen@databricks.com>2014-12-31 14:13:43 -0800
commit076de46f2544f74b1b382a76363e6ed7139d7b70 (patch)
treea86102ac89256022ccc72a823e47515cf5b5280f /core
parent7c9c25b1fb7f8c2f6320b9175c98adc02f36a07b (diff)
downloadspark-076de46f2544f74b1b382a76363e6ed7139d7b70.tar.gz
spark-076de46f2544f74b1b382a76363e6ed7139d7b70.tar.bz2
spark-076de46f2544f74b1b382a76363e6ed7139d7b70.zip
[HOTFIX] Disable Spark UI in SparkSubmitSuite tests
This should fix a major cause of build breaks when running many parallel tests.
Diffstat (limited to 'core')
-rw-r--r--core/src/test/scala/org/apache/spark/deploy/SparkSubmitSuite.scala2
1 files changed, 2 insertions, 0 deletions
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 5eda2d41f0..065b7534ce 100644
--- a/core/src/test/scala/org/apache/spark/deploy/SparkSubmitSuite.scala
+++ b/core/src/test/scala/org/apache/spark/deploy/SparkSubmitSuite.scala
@@ -290,6 +290,7 @@ class SparkSubmitSuite extends FunSuite with Matchers with ResetSystemProperties
"--class", SimpleApplicationTest.getClass.getName.stripSuffix("$"),
"--name", "testApp",
"--master", "local",
+ "--conf", "spark.ui.enabled=false",
unusedJar.toString)
runSparkSubmit(args)
}
@@ -304,6 +305,7 @@ class SparkSubmitSuite extends FunSuite with Matchers with ResetSystemProperties
"--name", "testApp",
"--master", "local-cluster[2,1,512]",
"--jars", jarsString,
+ "--conf", "spark.ui.enabled=false",
unusedJar.toString)
runSparkSubmit(args)
}