Repository: storm
Updated Branches:
  refs/heads/master c9efe3be9 -> 16e500844


STORM-3180 Total executors in Cluster Summary in main UI page is not exposed 
even a topology is running

* rename the field of /cluster/summary output: totalExecutors to executorsTotal


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/fdfeb141
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/fdfeb141
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/fdfeb141

Branch: refs/heads/master
Commit: fdfeb14166301fed82b045f41934b693e95577c4
Parents: 1828a17
Author: Jungtaek Lim <kabh...@gmail.com>
Authored: Mon Aug 6 22:07:53 2018 +0900
Committer: Jungtaek Lim <kabh...@gmail.com>
Committed: Mon Aug 6 22:07:53 2018 +0900

----------------------------------------------------------------------
 .../src/main/java/org/apache/storm/daemon/ui/UIHelpers.java        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/fdfeb141/storm-webapp/src/main/java/org/apache/storm/daemon/ui/UIHelpers.java
----------------------------------------------------------------------
diff --git 
a/storm-webapp/src/main/java/org/apache/storm/daemon/ui/UIHelpers.java 
b/storm-webapp/src/main/java/org/apache/storm/daemon/ui/UIHelpers.java
index 4096763..31c5423 100644
--- a/storm-webapp/src/main/java/org/apache/storm/daemon/ui/UIHelpers.java
+++ b/storm-webapp/src/main/java/org/apache/storm/daemon/ui/UIHelpers.java
@@ -571,7 +571,7 @@ public class UIHelpers {
         result.put("slotsTotal", totalSlots);
         result.put("slotsFree", totalSlots - usedSlots);
         result.put("tasksTotal", totalTasks);
-        result.put("totalExecutors", totalExecutors);
+        result.put("executorsTotal", totalExecutors);
 
         result.put("totalMem", supervisorTotalMemory);
         result.put("totalCpu", supervisorTotalCpu);

Reply via email to