You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2012/10/24 08:09:07 UTC

svn commit: r1401563 - /hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/ReplicationPeer.java

Author: stack
Date: Wed Oct 24 06:09:06 2012
New Revision: 1401563

URL: http://svn.apache.org/viewvc?rev=1401563&view=rev
Log:
HBASE-7037 ReplicationPeer logs at WARN level aborting server instead of at FATAL

Modified:
    hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/ReplicationPeer.java

Modified: hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/ReplicationPeer.java
URL: http://svn.apache.org/viewvc/hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/ReplicationPeer.java?rev=1401563&r1=1401562&r2=1401563&view=diff
==============================================================================
--- hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/ReplicationPeer.java (original)
+++ hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/ReplicationPeer.java Wed Oct 24 06:09:06 2012
@@ -153,7 +153,7 @@ public class ReplicationPeer implements 
 
   @Override
   public void abort(String why, Throwable e) {
-    LOG.warn("The ReplicationPeer coresponding to peer " + clusterKey
+    LOG.fatal("The ReplicationPeer coresponding to peer " + clusterKey
         + " was aborted for the following reason(s):" + why, e);
   }