d-c-manning commented on a change in pull request #3402:
URL: https://github.com/apache/hbase/pull/3402#discussion_r658894726



##########
File path: 
hbase-server/src/main/java/org/apache/hadoop/hbase/master/RegionStates.java
##########
@@ -713,9 +713,9 @@ public void regionOffline(
       regionsInTransition.remove(encodedName);
       ServerName oldServerName = regionAssignments.remove(hri);
       if (oldServerName != null && serverHoldings.containsKey(oldServerName)) {
-        if (newState == State.MERGED || newState == State.SPLIT
+        if (force || (newState == State.MERGED || newState == State.SPLIT

Review comment:
       nit: this statement likely doesn't need the extra parentheses, since 
they are all separated by `||`




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