return;
}
LOG.trace("Entering preRollBack for the table " + userTableName + " for the region "
+ region.getRegionInfo());
SplitInfo splitInfo = splitThreadLocal.get();
SplitTransaction splitTransaction = splitInfo.getSplitTransaction();
try {
if (splitTransaction != null) {
splitTransaction.rollback(rs, rs);
LOG.info("preRollBack successfully done for the table " + userTableName
+ " for the region " + region.getRegionInfo());
}
} catch (Exception e) {
LOG.error(
"Error while rolling back the split failure for index region "
+ splitTransaction.getParent(), e);
rs.abort("Abort; we got an error during rollback of index");
}
}