HBASE-3845 Addendum: relax lastSeqWritten check in case write to WAL is skipped

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1152457 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Zhihong Yu 2011-07-30 11:36:44 +00:00
parent 5e4f28c289
commit 27daf3e744
1 changed files with 0 additions and 4 deletions

View File

@ -1174,10 +1174,6 @@ public class HLog implements Syncable {
" overwritten oldseq=" + oldseq + "with new seq=" + seq);
Runtime.getRuntime().halt(1);
}
} else {
LOG.error("Logic Error - flushing an empty region??? " +
Bytes.toString(encodedRegionName));
Runtime.getRuntime().halt(1);
}
return obtainSeqNum();
}