Repository: spark Updated Branches: refs/heads/branch-1.4 e9283f236 -> 0cf28708e
Revert "[SPARK-10172] [CORE] disable sort in HistoryServer webUI" This reverts commit 9b1fb76213686c8379a5b99cb3ca7b7f238a5de4. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/0cf28708 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/0cf28708 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/0cf28708 Branch: refs/heads/branch-1.4 Commit: 0cf28708ed5b134d88b94f8508a025ddf2e8368d Parents: e9283f2 Author: Xiangrui Meng <[email protected]> Authored: Thu Sep 17 13:47:51 2015 -0700 Committer: Xiangrui Meng <[email protected]> Committed: Thu Sep 17 13:47:51 2015 -0700 ---------------------------------------------------------------------- .../scala/org/apache/spark/deploy/history/HistoryPage.scala | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/0cf28708/core/src/main/scala/org/apache/spark/deploy/history/HistoryPage.scala ---------------------------------------------------------------------- diff --git a/core/src/main/scala/org/apache/spark/deploy/history/HistoryPage.scala b/core/src/main/scala/org/apache/spark/deploy/history/HistoryPage.scala index b347cb3..0830cc1 100644 --- a/core/src/main/scala/org/apache/spark/deploy/history/HistoryPage.scala +++ b/core/src/main/scala/org/apache/spark/deploy/history/HistoryPage.scala @@ -51,10 +51,7 @@ private[history] class HistoryPage(parent: HistoryServer) extends WebUIPage("") val hasMultipleAttempts = appsToShow.exists(_.attempts.size > 1) val appTable = if (hasMultipleAttempts) { - // Sorting is disable here as table sort on rowspan has issues. - // ref. SPARK-10172 - UIUtils.listingTable(appWithAttemptHeader, appWithAttemptRow, - appsToShow, sortable = false) + UIUtils.listingTable(appWithAttemptHeader, appWithAttemptRow, appsToShow) } else { UIUtils.listingTable(appHeader, appRow, appsToShow) } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
