HDFS-8490. Typo in trace enabled log in ExceptionHandler of WebHDFS. Contributed by Archana T.
This commit is contained in:
parent
da05361c3b
commit
c2356cb0bc
|
@ -825,6 +825,9 @@ Release 2.8.0 - UNRELEASED
|
||||||
HDFS-7609. Avoid retry cache collision when Standby NameNode loading edits.
|
HDFS-7609. Avoid retry cache collision when Standby NameNode loading edits.
|
||||||
(Ming Ma via jing9)
|
(Ming Ma via jing9)
|
||||||
|
|
||||||
|
HDFS-8490. Typo in trace enabled log in ExceptionHandler of WebHDFS.
|
||||||
|
(Archana T via ozawa)
|
||||||
|
|
||||||
Release 2.7.1 - UNRELEASED
|
Release 2.7.1 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -50,7 +50,7 @@ class ExceptionHandler {
|
||||||
Exception e = cause instanceof Exception ? (Exception) cause : new Exception(cause);
|
Exception e = cause instanceof Exception ? (Exception) cause : new Exception(cause);
|
||||||
|
|
||||||
if (LOG.isTraceEnabled()) {
|
if (LOG.isTraceEnabled()) {
|
||||||
LOG.trace("GOT EXCEPITION", e);
|
LOG.trace("GOT EXCEPTION", e);
|
||||||
}
|
}
|
||||||
|
|
||||||
//Convert exception
|
//Convert exception
|
||||||
|
|
Loading…
Reference in New Issue