Browse Source

HADOOP-2359. Remove warning for interruptted exception when closing down
minidfs. Contributed by Dhruba.


git-svn-id: https://svn.apache.org/repos/asf/lucene/hadoop/trunk@602256 13f79535-47bb-0310-9956-ffa450edef68

Owen O'Malley 17 năm trước cách đây
mục cha
commit
f7ee589c5e

+ 3 - 0
CHANGES.txt

@@ -223,6 +223,9 @@ Trunk (unreleased changes)
 
     HADOOP-2313.  Fail the build if building libhdfs fails. (nigel via omalley)
 
+    HADOOP-2359.  Remove warning for interruptted exception when closing down
+    minidfs. (dhruba via omalley)
+
 Branch 0.15 (unreleased)
 
   BUG FIXES

+ 1 - 1
src/java/org/apache/hadoop/dfs/PendingReplicationBlocks.java

@@ -184,7 +184,7 @@ class PendingReplicationBlocks {
           pendingReplicationCheck();
           Thread.sleep(period);
         } catch (InterruptedException ie) {
-          FSNamesystem.LOG.warn(
+          FSNamesystem.LOG.debug(
                 "PendingReplicationMonitor thread received exception. " + ie);
         }
       }