HDFS-11012. Unnecessary INFO logging on DFSClients for InvalidToken. Contributed by Harsh J.

This closes #142
This commit is contained in:
Akira Ajisaka 2016-10-15 22:14:24 +09:00
parent 391ce535a7
commit 5ad037df25
1 changed files with 3 additions and 2 deletions

View File

@ -1261,8 +1261,9 @@ public class DFSInputStream extends FSInputStream
*/
if (ex instanceof InvalidBlockTokenException ||
ex instanceof InvalidToken) {
DFSClient.LOG.info("Access token was invalid when connecting to "
+ targetAddr + " : " + ex);
DFSClient.LOG.debug(
"Access token was invalid when connecting to {}: {}",
targetAddr, ex);
return true;
}
return false;