Github user ajbozarth commented on a diff in the pull request:
https://github.com/apache/spark/pull/19399#discussion_r142232300
--- Diff:
core/src/main/scala/org/apache/spark/deploy/history/FsHistoryProvider.scala ---
@@ -850,6 +869,18 @@ private[history] class AppListingListener(log:
FileStatus, clock: Clock) extends
fileSize)
}
+ def applicationStatus : Option[String] = {
+ if (startTime.getTime == -1) {
+ Some("<Not Started>")
+ } else if (endTime.getTime == -1) {
+ Some("<In Progress>")
--- End diff --
I don't think these should have brackets
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]