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> (cherry picked from commit49ddd8a6ed
) (cherry picked from commit38541b2375
) (cherry picked from commitc25b641cec
)
This commit is contained in:
parent
02cfd5fa35
commit
ad131757f2
|
@ -312,7 +312,8 @@ class DataXceiver extends Receiver implements Runnable {
|
|||
} 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);
|
||||
|
|
Loading…
Reference in New Issue