Reverting HBASE-3515
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1082772 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
95661df251
commit
d051203938
|
@ -38,8 +38,6 @@ Release 0.91.0 - Unreleased
|
|||
HBASE-3313 Table name isn't checked in isTableEnabled/isTableDisabled
|
||||
(Ted Yu via Stack)
|
||||
HBASE-3514 Speedup HFile.Writer append (Matteo Bertozzi via Ryan)
|
||||
HBASE-3515 [replication] ReplicationSource can miss a log after RS comes
|
||||
out of GC
|
||||
HBASE-3665 tighten assertions for testBloomFilterSize
|
||||
HBASE-3662 REST server does not respect client supplied max versions when
|
||||
creating scanner
|
||||
|
|
|
@ -504,9 +504,6 @@ public class HLog implements Syncable {
|
|||
}
|
||||
|
||||
synchronized (updateLock) {
|
||||
if (closed) {
|
||||
return regionsToFlush;
|
||||
}
|
||||
// Clean up current writer.
|
||||
Path oldFile = cleanupCurrentWriter(currentFilenum);
|
||||
this.writer = nextWriter;
|
||||
|
|
|
@ -517,6 +517,9 @@ public class TestReplication {
|
|||
/**
|
||||
* Load up multiple tables over 2 region servers and kill a source during
|
||||
* the upload. The failover happens internally.
|
||||
*
|
||||
* WARNING this test sometimes fails because of HBASE-3515
|
||||
*
|
||||
* @throws Exception
|
||||
*/
|
||||
@Test
|
||||
|
|
Loading…
Reference in New Issue