Display placeholder for non-master-eligible nodes.

This commit is contained in:
Andrew Raines 2013-11-29 02:35:45 -06:00
parent 455c92d27b
commit 28ecafac11
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ public class RestNodesAction extends BaseRestHandler {
table.addCell(stats == null ? null : stats.getOs() == null ? null : stats.getOs().getLoadAverage().length < 1 ? null : stats.getOs().getLoadAverage()[0]);
table.addCell(stats == null ? null : stats.getJvm().uptime());
table.addCell(node.clientNode() ? "c" : node.dataNode() ? "d" : null);
table.addCell(masterId.equals(node.id()) ? "*" : node.masterNode() ? "m" : null);
table.addCell(masterId.equals(node.id()) ? "*" : node.masterNode() ? "m" : "-");
table.addCell(node.name());
table.endRow();