Github user vanzin commented on a diff in the pull request:
https://github.com/apache/spark/pull/19061#discussion_r143073447
--- Diff: core/src/main/scala/org/apache/spark/SparkContext.scala ---
@@ -434,7 +434,7 @@ class SparkContext(config: SparkConf) extends Logging {
_statusTracker = new SparkStatusTracker(this)
_progressBar =
- if (_conf.getBoolean("spark.ui.showConsoleProgress", true) &&
!log.isInfoEnabled) {
+ if (_conf.getBoolean(UI_SHOW_CONSOLE_PROGRESS.key, false) &&
!log.isInfoEnabled) {
--- End diff --
`_conf.get(UI_SHOW_CONSOLE_PROGRESS)`
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]