[HOTFIX] Disable Spark UI in SparkSubmitSuite tests

This should fix a major cause of build breaks when running many parallel tests.
This commit is contained in:
Josh Rosen 2014-12-12 12:38:37 -08:00
parent 3d194cc757
commit e24d3a9a29

View file

@ -290,6 +290,7 @@ class SparkSubmitSuite extends FunSuite with Matchers with ResetSystemProperties
"--class", SimpleApplicationTest.getClass.getName.stripSuffix("$"), "--class", SimpleApplicationTest.getClass.getName.stripSuffix("$"),
"--name", "testApp", "--name", "testApp",
"--master", "local", "--master", "local",
"--conf", "spark.ui.enabled=false",
unusedJar.toString) unusedJar.toString)
runSparkSubmit(args) runSparkSubmit(args)
} }
@ -304,6 +305,7 @@ class SparkSubmitSuite extends FunSuite with Matchers with ResetSystemProperties
"--name", "testApp", "--name", "testApp",
"--master", "local-cluster[2,1,512]", "--master", "local-cluster[2,1,512]",
"--jars", jarsString, "--jars", jarsString,
"--conf", "spark.ui.enabled=false",
unusedJar.toString) unusedJar.toString)
runSparkSubmit(args) runSparkSubmit(args)
} }