Skip to content

Commit

Permalink
default disable spark ui in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-williams committed Jun 24, 2017
1 parent 297fc28 commit c1f34db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
@@ -1,6 +1,6 @@
name := "spark-tests"

version := "2.0.0"
version := "2.0.1"

libraryDependencies ++= Seq(
libs.value('paths),
Expand Down
Expand Up @@ -62,9 +62,9 @@ trait SparkSuiteBase
// Set this explicitly so that we get deterministic behavior across test-machines with varying numbers of cores.
"spark.master" s"local[$numCores]",
"spark.app.name" this.getClass.getName,
"spark.driver.host" "localhost"
"spark.driver.host" "localhost",
"spark.ui.enabled" "false"
)

}

case object SparkContextAlreadyInitialized extends IllegalStateException
Expand Down

0 comments on commit c1f34db

Please sign in to comment.