HADOOP-11868. Invalid user logins trigger large backtraces in server log. Contributed by Chang Li

(cherry picked from commit 0ebe84d30a)
This commit is contained in:
Jason Lowe 2015-04-22 20:56:29 +00:00
parent 72b706a1b0
commit feb995fc50
2 changed files with 8 additions and 1 deletions

View File

@ -560,7 +560,11 @@ public Principal getUserPrincipal() {
// exception from the filter itself is fatal
errCode = HttpServletResponse.SC_FORBIDDEN;
authenticationEx = ex;
LOG.warn("Authentication exception: " + ex.getMessage(), ex);
if (LOG.isDebugEnabled()) {
LOG.debug("Authentication exception: " + ex.getMessage(), ex);
} else {
LOG.warn("Authentication exception: " + ex.getMessage());
}
}
if (unauthorizedResponse) {
if (!httpResponse.isCommitted()) {

View File

@ -110,6 +110,9 @@ Release 2.7.1 - UNRELEASED
BUG FIXES
HADOOP-11868. Invalid user logins trigger large backtraces in server log
(Chang Li via jlowe)
Release 2.7.0 - 2015-04-20
INCOMPATIBLE CHANGES