Apache9 commented on a change in pull request #501: HBASE-22699 refactor
isMetaClearingException
URL: https://github.com/apache/hbase/pull/501#discussion_r319947677
##########
File path:
hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncRegionLocatorHelper.java
##########
@@ -67,7 +68,8 @@ static void updateCachedLocationOnError(HRegionLocation loc,
Throwable exception
LOG.debug("The actual exception when updating {} is {}", loc,
cause != null ? cause.toString() : "none");
}
- if (cause == null || !isMetaClearingException(cause)) {
+ if (cause == null || !isMetaClearingException(cause)
Review comment:
So now we need to modify the code other than ClientExceptionsUtil, this
means we need to create patch for branch-2? As on branch-2, I believe there are
other code paths which need to handle this...
----------------------------------------------------------------
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]
With regards,
Apache Git Services