HDFS-14231. DataXceiver#run() should not log exceptions caused by InvalidToken exception as an error. Contributed by Kitti Nanasi.

Signed-off-by: Wei-Chiu Chuang <weichiu@apache.org>
This commit is contained in:
Kitti Nanasi 2019-02-05 15:13:14 -08:00 committed by Wei-Chiu Chuang
parent 308f3168fa
commit 49ddd8a6ed
1 changed files with 2 additions and 1 deletions

View File

@ -313,7 +313,8 @@ public void run() {
} else {
LOG.info("{}; {}", s1, t.toString());
}
} else if (t instanceof InvalidToken) {
} else if (t instanceof InvalidToken ||
t.getCause() instanceof InvalidToken) {
// The InvalidToken exception has already been logged in
// checkAccess() method and this is not a server error.
LOG.trace(s, t);