HADOOP-9886. Turn warning message in RetryInvocationHandler to debug. Contributed by Arpit Gupta
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1516034 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5e68bc4cd6
commit
a6ef93307e
|
@ -382,6 +382,8 @@ Release 2.1.1-beta - UNRELEASED
|
||||||
|
|
||||||
HADOOP-9879. Move the version info of zookeeper dependencies to
|
HADOOP-9879. Move the version info of zookeeper dependencies to
|
||||||
hadoop-project/pom (Karthik Kambatla via Sandy Ryza)
|
hadoop-project/pom (Karthik Kambatla via Sandy Ryza)
|
||||||
|
|
||||||
|
HADOOP-9886. Turn warning message in RetryInvocationHandler to debug (arpit)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
|
|
|
@ -136,8 +136,6 @@ public class RetryInvocationHandler<T> implements RpcInvocationHandler {
|
||||||
msg += ". Trying to fail over " + formatSleepMessage(action.delayMillis);
|
msg += ". Trying to fail over " + formatSleepMessage(action.delayMillis);
|
||||||
if (LOG.isDebugEnabled()) {
|
if (LOG.isDebugEnabled()) {
|
||||||
LOG.debug(msg, e);
|
LOG.debug(msg, e);
|
||||||
} else {
|
|
||||||
LOG.warn(msg);
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if(LOG.isDebugEnabled()) {
|
if(LOG.isDebugEnabled()) {
|
||||||
|
|
Loading…
Reference in New Issue