Recovered replication queue wait on themselves when terminating
---------------------------------------------------------------

                 Key: HBASE-3358
                 URL: https://issues.apache.org/jira/browse/HBASE-3358
             Project: HBase
          Issue Type: Bug
            Reporter: Jean-Daniel Cryans
            Assignee: Jean-Daniel Cryans
             Fix For: 0.90.0


When I ported the replication code on the new master I broke a few things, and 
it seems that the threads created for recovered queues never properly terminate 
because they join on themselves. Easy fix in ReplicationSource:

{code}
-      this.terminate("Finished recovering the queue");
+      LOG.info("Finished recovering the queue");
+      this.running = false;
{code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to