HADOOP-10422. Merging change r1581112 from trunk to branch-2.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1581123 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Chris Nauroth 2014-03-24 23:31:52 +00:00
parent 64e93189f1
commit 501c09c2c4
2 changed files with 2 additions and 2 deletions

View File

@ -139,6 +139,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)

View File

@ -106,8 +106,6 @@ public class RetryUtils {
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);
} }