This is an automated email from the ASF dual-hosted git repository.
zhouky pushed a commit to branch branch-0.3
in repository https://gitbox.apache.org/repos/asf/incubator-celeborn.git
The following commit(s) were added to refs/heads/branch-0.3 by this push:
new 792758082 [MINOR] Fix wrong description about app list
792758082 is described below
commit 792758082db45b9115e61106883c14537ecb175b
Author: xleoken <[email protected]>
AuthorDate: Thu Oct 12 20:43:03 2023 +0800
[MINOR] Fix wrong description about app list
### What changes were proposed in this pull request?
Fix wrong description about app list.
### How was this patch tested?
local.
Closes #1979 from xleoken/patch2.
Authored-by: xleoken <[email protected]>
Signed-off-by: zky.zhoukeyong <[email protected]>
(cherry picked from commit 304b796475e35df169009ad1157aaa59ca108b3b)
Signed-off-by: zky.zhoukeyong <[email protected]>
---
.../main/scala/org/apache/celeborn/service/deploy/master/Master.scala | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/master/src/main/scala/org/apache/celeborn/service/deploy/master/Master.scala
b/master/src/main/scala/org/apache/celeborn/service/deploy/master/Master.scala
index 737a8a9b5..79e1b9a37 100644
---
a/master/src/main/scala/org/apache/celeborn/service/deploy/master/Master.scala
+++
b/master/src/main/scala/org/apache/celeborn/service/deploy/master/Master.scala
@@ -906,7 +906,7 @@ private[celeborn] class Master(
override def getApplicationList: String = {
val sb = new StringBuilder
- sb.append("================= LifecycleManager Hostname List
======================\n")
+ sb.append("================= LifecycleManager Application List
======================\n")
statusSystem.appHeartbeatTime.asScala.toSeq.sortBy(_._2).foreach { case
(appId, time) =>
sb.append(s"${appId.padTo(40, " ").mkString}${dateFmt.format(time)}\n")
}
@@ -925,7 +925,7 @@ private[celeborn] class Master(
override def listTopDiskUseApps: String = {
val sb = new StringBuilder
sb.append("================== Top Disk Usage Applications
=======================\n")
- sb.append(statusSystem.appDiskUsageMetric.summary)
+ sb.append(statusSystem.appDiskUsageMetric.summary())
sb.toString()
}