NihalJain commented on code in PR #5229:
URL: https://github.com/apache/hbase/pull/5229#discussion_r1197361363


##########
hbase-server/src/main/java/org/apache/hadoop/hbase/util/HBaseFsck.java:
##########
@@ -707,6 +709,18 @@ public int onlineConsistencyRepair() throws IOException, 
KeeperException, Interr
     return errors.getErrorList().size();
   }
 
+  private void reportUnknownServers() throws IOException {
+    List<ServerName> unknownServers = admin.listUnknownServers();
+    if (!unknownServers.isEmpty()) {
+      unknownServers.stream().forEach(serverName -> {
+        errors.reportError(ERROR_CODE.UNKNOWN_SERVER,
+          "Found unknown server, "
+            + " some of the regions hold by this server may not get assigned. "

Review Comment:
   nit: hold -> held. 
   also we could remove an extra space between "server,  some"



-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@hbase.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to