HBASE-10482 ReplicationSyncUp doesn't clean up its ZK, needed for tests
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1565837 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5102eed4d8
commit
653e682d99
|
@ -115,6 +115,7 @@ public class ReplicationSyncUp extends Configured implements Tool {
|
||||||
}
|
}
|
||||||
|
|
||||||
manager.join();
|
manager.join();
|
||||||
|
zkw.close();
|
||||||
|
|
||||||
return (0);
|
return (0);
|
||||||
}
|
}
|
||||||
|
|
|
@ -207,6 +207,7 @@ public class TestReplicationSyncUpTool extends TestReplicationBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void putAndReplicateRows() throws Exception {
|
private void putAndReplicateRows() throws Exception {
|
||||||
|
LOG.debug("putAndReplicateRows");
|
||||||
// add rows to Master cluster,
|
// add rows to Master cluster,
|
||||||
Put p;
|
Put p;
|
||||||
|
|
||||||
|
@ -260,6 +261,7 @@ public class TestReplicationSyncUpTool extends TestReplicationBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void mimicSyncUpAfterDelete() throws Exception {
|
private void mimicSyncUpAfterDelete() throws Exception {
|
||||||
|
LOG.debug("mimicSyncUpAfterDelete");
|
||||||
utility2.shutdownMiniHBaseCluster();
|
utility2.shutdownMiniHBaseCluster();
|
||||||
|
|
||||||
List<Delete> list = new ArrayList<Delete>();
|
List<Delete> list = new ArrayList<Delete>();
|
||||||
|
@ -329,6 +331,7 @@ public class TestReplicationSyncUpTool extends TestReplicationBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void mimicSyncUpAfterPut() throws Exception {
|
private void mimicSyncUpAfterPut() throws Exception {
|
||||||
|
LOG.debug("mimicSyncUpAfterPut");
|
||||||
utility1.restartHBaseCluster(1);
|
utility1.restartHBaseCluster(1);
|
||||||
utility2.shutdownMiniHBaseCluster();
|
utility2.shutdownMiniHBaseCluster();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue