Repository: hadoop Updated Branches: refs/heads/branch-2 dc308e98b -> 35832901e
HDFS-11012. Unnecessary INFO logging on DFSClients for InvalidToken. Contributed by Harsh J. (cherry picked from commit 5ad037df25ab3206509083276b7ef4ef001be48b) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/35832901 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/35832901 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/35832901 Branch: refs/heads/branch-2 Commit: 35832901e87faa8cde687568df3145bea78b4121 Parents: dc308e9 Author: Akira Ajisaka <[email protected]> Authored: Sat Oct 15 22:14:24 2016 +0900 Committer: Akira Ajisaka <[email protected]> Committed: Sat Oct 15 22:17:55 2016 +0900 ---------------------------------------------------------------------- .../src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/35832901/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java b/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java index 559d5b2..669485a 100644 --- a/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java +++ b/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSInputStream.java @@ -1483,9 +1483,11 @@ public class DFSInputStream extends FSInputStream * access key from its memory since it's considered expired based on * the estimated expiration date. */ - if (ex instanceof InvalidBlockTokenException || ex instanceof InvalidToken) { - DFSClient.LOG.info("Access token was invalid when connecting to " - + targetAddr + " : " + ex); + if (ex instanceof InvalidBlockTokenException || + ex instanceof InvalidToken) { + DFSClient.LOG.debug( + "Access token was invalid when connecting to {}: {}", + targetAddr, ex); return true; } return false; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
