Repository: hbase Updated Branches: refs/heads/branch-2 71cc7869d -> 78c02c508
HBASE-20114 Fix IllegalFormatConversionException in rsgroup.jsp Repplication. Was reverted earlier. Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/78c02c50 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/78c02c50 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/78c02c50 Branch: refs/heads/branch-2 Commit: 78c02c508105fa326515fc9b51b65316f1940605 Parents: 71cc786 Author: haxiaolin <[email protected]> Authored: Fri Mar 2 11:21:12 2018 +0800 Committer: Michael Stack <[email protected]> Committed: Thu Mar 8 09:29:01 2018 -0800 ---------------------------------------------------------------------- hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/78c02c50/hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp ---------------------------------------------------------------------- diff --git a/hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp b/hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp index 7b7e227..43753a5 100644 --- a/hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp +++ b/hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp @@ -254,7 +254,7 @@ %> <tr> <td><a href="<%= url %>"><%= serverName.getServerName() %></a></td> - <td><%= String.format("%.0f", sl.getRequestCountPerSecond()) %></td> + <td><%= sl.getRequestCountPerSecond() %></td> <td><%= readRequestCount %></td> <td><%= writeRequestCount %></td> </tr>
