Github user kayousterhout commented on a diff in the pull request:
https://github.com/apache/spark/pull/3009#discussion_r20174701
--- Diff: core/src/main/scala/org/apache/spark/ui/jobs/AllStagesPage.scala
---
@@ -41,11 +41,13 @@ private[ui] class JobProgressPage(parent:
JobProgressTab) extends WebUIPage("")
val activeStagesTable =
new StageTableBase(activeStages.sortBy(_.submissionTime).reverse,
- parent, parent.killEnabled)
+ parent.basePath, parent.listener, parent.killEnabled)
val completedStagesTable =
- new
StageTableBase(completedStages.sortBy(_.submissionTime).reverse, parent)
+ new
StageTableBase(completedStages.sortBy(_.submissionTime).reverse,
parent.basePath,
+ parent.listener, parent.killEnabled)
--- End diff --
Shouldn't killEnabled always be false here (so don't pass it in, in which
case it defaults to false)? Since killing a completed / failed stage has no
meaning.
---
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]