Repository: hadoop
Updated Branches:
  refs/heads/branch-2.7 b17d365fa -> 2419861ca


HADOOP-11868. Invalid user logins trigger large backtraces in server log. 
Contributed by Chang Li
(cherry picked from commit 0ebe84d30af2046775884c9fb1e054da31582657)


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/2419861c
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/2419861c
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/2419861c

Branch: refs/heads/branch-2.7
Commit: 2419861cac53c9bc9a14a635700f88d08c3105c4
Parents: b17d365
Author: Jason Lowe <jl...@apache.org>
Authored: Wed Apr 22 20:56:29 2015 +0000
Committer: Jason Lowe <jl...@apache.org>
Committed: Wed Apr 22 20:58:27 2015 +0000

----------------------------------------------------------------------
 .../security/authentication/server/AuthenticationFilter.java   | 6 +++++-
 hadoop-common-project/hadoop-common/CHANGES.txt                | 3 +++
 2 files changed, 8 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/2419861c/hadoop-common-project/hadoop-auth/src/main/java/org/apache/hadoop/security/authentication/server/AuthenticationFilter.java
----------------------------------------------------------------------
diff --git 
a/hadoop-common-project/hadoop-auth/src/main/java/org/apache/hadoop/security/authentication/server/AuthenticationFilter.java
 
b/hadoop-common-project/hadoop-auth/src/main/java/org/apache/hadoop/security/authentication/server/AuthenticationFilter.java
index 203ee41..9cfa3c2 100644
--- 
a/hadoop-common-project/hadoop-auth/src/main/java/org/apache/hadoop/security/authentication/server/AuthenticationFilter.java
+++ 
b/hadoop-common-project/hadoop-auth/src/main/java/org/apache/hadoop/security/authentication/server/AuthenticationFilter.java
@@ -560,7 +560,11 @@ public class AuthenticationFilter implements Filter {
       // 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()) {

http://git-wip-us.apache.org/repos/asf/hadoop/blob/2419861c/hadoop-common-project/hadoop-common/CHANGES.txt
----------------------------------------------------------------------
diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt 
b/hadoop-common-project/hadoop-common/CHANGES.txt
index 0e7cbbe..1729064 100644
--- a/hadoop-common-project/hadoop-common/CHANGES.txt
+++ b/hadoop-common-project/hadoop-common/CHANGES.txt
@@ -12,6 +12,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

Reply via email to