Преглед на файлове

commit ea0dda9965ad71db097bcf8c12eb3904eea5f683
Author: Boris Shkolnik <borya@yahoo-inc.com>
Date: Thu May 20 11:46:47 2010 -0700

HADOOP:6781 from https://issues.apache.org/jira/secure/attachment/12445092/HADOOP-6781-BP20.patch

+++ b/YAHOO-CHANGES.txt
+ HADOOP-6781. security audit log shouldn't have exception in it.(boryas)


git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.20-security-patches@1077477 13f79535-47bb-0310-9956-ffa450edef68

Owen O'Malley преди 14 години
родител
ревизия
6760e32be9
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/core/org/apache/hadoop/ipc/Server.java

+ 1 - 1
src/core/org/apache/hadoop/ipc/Server.java

@@ -937,7 +937,7 @@ public abstract class Server {
           rpcMetrics.authenticationFailures.inc();
           String clientIP = this.toString();
           // attempting user could be null
-          AUDITLOG.warn(AUTH_FAILED_FOR + clientIP + ":" + attemptingUser, e);
+          AUDITLOG.warn(AUTH_FAILED_FOR + clientIP + ":" + attemptingUser);
           throw e;
         }
         if (replyToken != null) {