aboutsummaryrefslogtreecommitdiff
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:09 -0800
commite24d3a9a29962023cc722896a14c7bfe06e8e601 (patch)
tree55bec27e92fc8a7c4d7e9862dbe7ba02a84c7174
parent3d194cc75761fceba77b2c91291b36479b8b556c (diff)
downloadspark-e24d3a9a29962023cc722896a14c7bfe06e8e601.tar.gz
spark-e24d3a9a29962023cc722896a14c7bfe06e8e601.tar.bz2
spark-e24d3a9a29962023cc722896a14c7bfe06e8e601.zip
[HOTFIX] Disable Spark UI in SparkSubmitSuite tests
This should fix a major cause of build breaks when running many parallel tests.
-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)
}