HADOOP-10422. Remove redundant logging of RPC retry attempts. Contributed by Chris Nauroth.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1581112 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
328fc86bdb
commit
935075121f
@ -439,6 +439,8 @@ Release 2.4.0 - UNRELEASED
|
|||||||
HADOOP-10191. Missing executable permission on viewfs internal dirs.
|
HADOOP-10191. Missing executable permission on viewfs internal dirs.
|
||||||
(Gera Shegalov via cnauroth)
|
(Gera Shegalov via cnauroth)
|
||||||
|
|
||||||
|
HADOOP-10422. Remove redundant logging of RPC retry attempts. (cnauroth)
|
||||||
|
|
||||||
BREAKDOWN OF HADOOP-10184 SUBTASKS AND RELATED JIRAS
|
BREAKDOWN OF HADOOP-10184 SUBTASKS AND RELATED JIRAS
|
||||||
|
|
||||||
HADOOP-10185. FileSystem API for ACLs. (cnauroth)
|
HADOOP-10185. FileSystem API for ACLs. (cnauroth)
|
||||||
|
@ -106,8 +106,6 @@ public RetryAction shouldRetry(Exception e, int retries, int failovers,
|
|||||||
LOG.debug("RETRY " + retries + ") policy="
|
LOG.debug("RETRY " + retries + ") policy="
|
||||||
+ p.getClass().getSimpleName() + ", exception=" + e);
|
+ p.getClass().getSimpleName() + ", exception=" + e);
|
||||||
}
|
}
|
||||||
LOG.info("RETRY " + retries + ") policy="
|
|
||||||
+ p.getClass().getSimpleName() + ", exception=" + e);
|
|
||||||
return p.shouldRetry(e, retries, failovers, isMethodIdempotent);
|
return p.shouldRetry(e, retries, failovers, isMethodIdempotent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user