Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Modify spark.ui.killEnabled default is false
  • Loading branch information
witgo committed Apr 23, 2014
commit d685783974ef3736d50ea5d16b7b97c8d9bc3b7e
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ private[ui] class JobProgressTab(parent: SparkUI) extends WebUITab(parent, "stag
val live = parent.live
val sc = parent.sc
val conf = if (live) sc.conf else new SparkConf
val killEnabled = conf.getBoolean("spark.ui.killEnabled", true)
val killEnabled = conf.getBoolean("spark.ui.killEnabled", false)
val listener = new JobProgressListener(conf)

attachPage(new JobProgressPage(this))
Expand Down