We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a89b3db + 0eeb5df commit 0d5062fCopy full SHA for 0d5062f
sql/core/src/main/scala/org/apache/spark/sql/execution/ui/AllExecutionsPage.scala
@@ -39,7 +39,6 @@ private[ui] class AllExecutionsPage(parent: SQLTab) extends WebUIPage("") with L
39
val running = new mutable.ArrayBuffer[SQLExecutionUIData]()
40
val completed = new mutable.ArrayBuffer[SQLExecutionUIData]()
41
val failed = new mutable.ArrayBuffer[SQLExecutionUIData]()
42
-
43
sqlStore.executionsList().foreach { e =>
44
val isRunning = e.completionTime.isEmpty ||
45
e.jobs.exists { case (_, status) => status == JobExecutionStatus.RUNNING }
0 commit comments