Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/15441#discussion_r84650695
  
    --- Diff: core/src/main/scala/org/apache/spark/ui/SparkUI.scala ---
    @@ -59,21 +59,25 @@ private[spark] class SparkUI private (
       val killEnabled = sc.map(_.conf.getBoolean("spark.ui.killEnabled", 
true)).getOrElse(false)
     
     
    +  val jobsTab = new JobsTab(this)
    +
       val stagesTab = new StagesTab(this)
     
       var appId: String = _
     
       /** Initialize all components of the server. */
       def initialize() {
    -    attachTab(new JobsTab(this))
    +    attachTab(jobsTab)
    --- End diff --
    
    See https://github.com/apache/spark/pull/15603 which reminds me that these 
two tabs don't need to be members. They can be locals. You can make the change 
for both here.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to