Github user kayousterhout commented on a diff in the pull request:
https://github.com/apache/spark/pull/6061#discussion_r30098075
--- Diff: core/src/main/scala/org/apache/spark/ui/jobs/StageTable.scala ---
@@ -194,7 +207,7 @@ private[ui] class FailedStageTable(
override protected def stageRow(s: StageInfo): Seq[Node] = {
val basicColumns = super.stageRow(s)
- val failureReason = s.failureReason.getOrElse("")
+ val failureReason = s.failureReason.getOrElse("-")
--- End diff --
Super nit, but does this need to change? It seems like changing it to "-"
is inconsistent with the way we handle other missing information (e.g., when
there's no shuffle read data, we leave it blank, instead of having "-")
---
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]