saintstack commented on a change in pull request #2690:
URL: https://github.com/apache/hbase/pull/2690#discussion_r528271857
##########
File path:
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java
##########
@@ -1251,9 +1251,7 @@ protected void tryRegionServerReport(long
reportStartTime, long reportEndTime)
ClusterStatusProtos.ServerLoad sl = buildServerLoad(reportStartTime,
reportEndTime);
try {
RegionServerReportRequest.Builder request =
RegionServerReportRequest.newBuilder();
- ServerName sn = ServerName.parseVersionedServerName(
- this.serverName.getVersionedBytes());
- request.setServer(ProtobufUtil.toServerName(sn));
+ request.setServer(ProtobufUtil.toServerName(this.serverName));
Review comment:
Good
##########
File path:
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java
##########
@@ -2288,9 +2286,7 @@ public void abort(final String reason, Throwable cause) {
if (rssStub != null && this.serverName != null) {
ReportRSFatalErrorRequest.Builder builder =
ReportRSFatalErrorRequest.newBuilder();
- ServerName sn =
-
ServerName.parseVersionedServerName(this.serverName.getVersionedBytes());
- builder.setServer(ProtobufUtil.toServerName(sn));
+ builder.setServer(ProtobufUtil.toServerName(this.serverName));
Review comment:
Good
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]