HBASE-3674 Treat ChecksumException as we would a ParseException splitting logs; else we replay split on every restart -- fixup for distributed log splitting

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1096842 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-04-26 18:35:31 +00:00
parent 7437b11bec
commit 992bf057e7
1 changed files with 1 additions and 1 deletions

View File

@ -687,7 +687,7 @@ public class HLogSplitter {
// then this problem is idempotent and retrying won't help
if (e.getCause() != null &&
(e.getCause() instanceof ParseException ||
e.getCause() instanceof org.apache.hadoop.fs.ChecksumException) {
e.getCause() instanceof org.apache.hadoop.fs.ChecksumException)) {
LOG.warn("Parse exception " + e.getCause().toString() + " from hlog "
+ path + ". continuing");
return null;