HBASE-14923 VerifyReplication should not mask the exception during result comparison (Vishal Khandelwal)

This commit is contained in:
Andrew Purtell 2015-12-04 18:40:48 -08:00
parent 9cf2d641ff
commit 3dcac2861d
1 changed files with 1 additions and 0 deletions

View File

@ -153,6 +153,7 @@ public class VerifyReplication extends Configured implements Tool {
context.getCounter(Counters.GOODROWS).increment(1);
} catch (Exception e) {
logFailRowAndIncreaseCounter(context, Counters.CONTENT_DIFFERENT_ROWS, value);
LOG.error("Exception while comparing row : " + e);
}
currentCompareRowInPeerTable = replicatedScanner.next();
break;