HADOOP-10343. Merging change r1568054 from trunk
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1568059 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
dc8e01e752
commit
af2ad815cd
|
@ -17,6 +17,8 @@ Release 2.4.0 - UNRELEASED
|
|||
HADOOP-10333. Fix grammatical error in overview.html document.
|
||||
(René Nyffenegger via suresh)
|
||||
|
||||
HADOOP-10343. Change info to debug log in LossyRetryInvocationHandler. (arpit)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
|
|
@ -51,11 +51,15 @@ public class LossyRetryInvocationHandler<T> extends RetryInvocationHandler<T> {
|
|||
int retryCount = RetryCount.get();
|
||||
if (retryCount < this.numToDrop) {
|
||||
RetryCount.set(++retryCount);
|
||||
LOG.info("Drop the response. Current retryCount == " + retryCount);
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("Drop the response. Current retryCount == " + retryCount);
|
||||
}
|
||||
throw new RetriableException("Fake Exception");
|
||||
} else {
|
||||
LOG.info("retryCount == " + retryCount
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("retryCount == " + retryCount
|
||||
+ ". It's time to normally process the response");
|
||||
}
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue