You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by nr...@apache.org on 2017/09/15 18:13:18 UTC

hadoop git commit: HDFS-12441. Supress UnresolvedPathException in namenode log. Contributed by Kihwal Lee.

Repository: hadoop
Updated Branches:
  refs/heads/trunk 2d2d97fa7 -> de197fc15


HDFS-12441. Supress UnresolvedPathException in namenode log. Contributed by Kihwal Lee.


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

Branch: refs/heads/trunk
Commit: de197fc1562c4d1c39d24738c7cf8a8869dcec9c
Parents: 2d2d97f
Author: Nathan Roberts <nr...@apache.org>
Authored: Fri Sep 15 13:08:41 2017 -0500
Committer: Nathan Roberts <nr...@apache.org>
Committed: Fri Sep 15 13:08:41 2017 -0500

----------------------------------------------------------------------
 .../apache/hadoop/hdfs/server/namenode/NameNodeRpcServer.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/de197fc1/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/NameNodeRpcServer.java
----------------------------------------------------------------------
diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/NameNodeRpcServer.java b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/NameNodeRpcServer.java
index 09c9d83..d62c0f2 100644
--- a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/NameNodeRpcServer.java
+++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/NameNodeRpcServer.java
@@ -517,10 +517,10 @@ public class NameNodeRpcServer implements NamenodeProtocols {
         QuotaByStorageTypeExceededException.class,
         AclException.class,
         FSLimitException.PathComponentTooLongException.class,
-        FSLimitException.MaxDirectoryItemsExceededException.class,
-        UnresolvedPathException.class);
+        FSLimitException.MaxDirectoryItemsExceededException.class);
 
-    clientRpcServer.addSuppressedLoggingExceptions(StandbyException.class);
+    clientRpcServer.addSuppressedLoggingExceptions(StandbyException.class,
+        UnresolvedPathException.class);
 
     clientRpcServer.setTracer(nn.tracer);
     if (serviceRpcServer != null) {


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-commits-help@hadoop.apache.org