File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
core/src/main/scala/org/apache/spark/deploy/history Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -38,11 +38,11 @@ private[spark] class IndexPage(parent: HistoryServer) {
3838 if (parent.appIdToInfo.size > 0 ) {
3939 <h4 >
4040 Showing {parent.appIdToInfo.size}/ {parent.getNumApplications}
41- Finished Application {if (parent.getNumApplications > 1 ) " s" else " " }
41+ Completed Application {if (parent.getNumApplications > 1 ) " s" else " " }
4242 </h4 > ++
4343 appTable
4444 } else {
45- <h4 >No Finished Applications Found </h4 >
45+ <h4 >No Completed Applications Found </h4 >
4646 }
4747 }
4848 </div >
@@ -53,7 +53,7 @@ private[spark] class IndexPage(parent: HistoryServer) {
5353 private val appHeader = Seq (
5454 " App Name" ,
5555 " Started" ,
56- " Finished " ,
56+ " Completed " ,
5757 " Duration" ,
5858 " Spark User" ,
5959 " Log Directory" ,
@@ -63,7 +63,7 @@ private[spark] class IndexPage(parent: HistoryServer) {
6363 val appName = if (info.started) info.name else info.logDirPath.getName
6464 val uiAddress = parent.getAddress + info.ui.basePath
6565 val startTime = if (info.started) WebUI .formatDate(info.startTime) else " Not started"
66- val endTime = if (info.completed) WebUI .formatDate(info.endTime) else " Not finished "
66+ val endTime = if (info.completed) WebUI .formatDate(info.endTime) else " Not completed "
6767 val difference = if (info.started && info.completed) info.endTime - info.startTime else - 1L
6868 val duration = if (difference > 0 ) WebUI .formatDuration(difference) else " ---"
6969 val sparkUser = if (info.started) info.sparkUser else " Unknown user"
You can’t perform that action at this time.
0 commit comments