Skip to content
Snippets Groups Projects
Commit 254a9307 authored by Karen Feng's avatar Karen Feng
Browse files

Reverse sorts StageTable by submitted time

parent 5ed5b730
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ private[spark] class StageTable(val stages: Seq[Stage], val parent: JobProgressU
val isFairScheduler = listener.sc.getSchedulingMode == SchedulingMode.FAIR
def toNodeSeq(): Seq[Node] = {
stageTable(stageRow, stages)
stageTable(stageRow, stages.sortBy(_.submissionTime).reverse)
}
/** Special table which merges two header cells. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment