Author: jdcryans
Date: Thu Sep 15 22:41:13 2011
New Revision: 1171303

URL: http://svn.apache.org/viewvc?rev=1171303&view=rev
Log:
   HBASE-4390  [replication] ReplicationSource's UncaughtExceptionHandler
               shouldn't join


Modified:
    hbase/branches/0.90/CHANGES.txt
    
hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSource.java

Modified: hbase/branches/0.90/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hbase/branches/0.90/CHANGES.txt?rev=1171303&r1=1171302&r2=1171303&view=diff
==============================================================================
--- hbase/branches/0.90/CHANGES.txt (original)
+++ hbase/branches/0.90/CHANGES.txt Thu Sep 15 22:41:13 2011
@@ -42,6 +42,8 @@ Release 0.90.5 - Unreleased
                to unassign (Ramkrishna)
    HBASE-4363  [replication] ReplicationSource won't close if failing
                to contact the sink (JD and Lars Hofhansl)
+   HBASE-4390  [replication] ReplicationSource's UncaughtExceptionHandler
+               shouldn't join
 
   IMPROVEMENT
    HBASE-4205  Enhance HTable javadoc (Eric Charles)

Modified: 
hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSource.java
URL: 
http://svn.apache.org/viewvc/hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSource.java?rev=1171303&r1=1171302&r2=1171303&view=diff
==============================================================================
--- 
hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSource.java
 (original)
+++ 
hbase/branches/0.90/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSource.java
 Thu Sep 15 22:41:13 2011
@@ -627,7 +627,8 @@ public class ReplicationSource extends T
     Thread.UncaughtExceptionHandler handler =
         new Thread.UncaughtExceptionHandler() {
           public void uncaughtException(final Thread t, final Throwable e) {
-            terminate("Uncaught exception during runtime", new Exception(e));
+            LOG.error("Unexpected exception in ReplicationSource," +
+              " currentPath=" + currentPath, e);
           }
         };
     Threads.setDaemonThreadRunning(


Reply via email to