Repository: spark Updated Branches: refs/heads/master 9f0a6e183 -> 63dfe21dc
[SPARK-5478][UI][Minor] Add missing right parentheses  Author: jerryshao <[email protected]> Closes #4267 from jerryshao/SPARK-5478 and squashes the following commits: 9fe51cc [jerryshao] Add missing right parentheses Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/63dfe21d Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/63dfe21d Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/63dfe21d Branch: refs/heads/master Commit: 63dfe21dc7743e6ebb431157eb2410a39a6c64e3 Parents: 9f0a6e1 Author: jerryshao <[email protected]> Authored: Sun Feb 1 23:56:13 2015 -0800 Committer: Patrick Wendell <[email protected]> Committed: Sun Feb 1 23:56:13 2015 -0800 ---------------------------------------------------------------------- core/src/main/scala/org/apache/spark/ui/jobs/AllStagesPage.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/63dfe21d/core/src/main/scala/org/apache/spark/ui/jobs/AllStagesPage.scala ---------------------------------------------------------------------- diff --git a/core/src/main/scala/org/apache/spark/ui/jobs/AllStagesPage.scala b/core/src/main/scala/org/apache/spark/ui/jobs/AllStagesPage.scala index 479f967..527f960 100644 --- a/core/src/main/scala/org/apache/spark/ui/jobs/AllStagesPage.scala +++ b/core/src/main/scala/org/apache/spark/ui/jobs/AllStagesPage.scala @@ -128,7 +128,7 @@ private[ui] class AllStagesPage(parent: StagesTab) extends WebUIPage("") { activeStagesTable.toNodeSeq } if (shouldShowPendingStages) { - content ++= <h4 id="pending">Pending Stages ({pendingStages.size}</h4> ++ + content ++= <h4 id="pending">Pending Stages ({pendingStages.size})</h4> ++ pendingStagesTable.toNodeSeq } if (shouldShowCompletedStages) { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
