return;
LOG.info("PROCESSING EVENT: " + synchronizationPoint + " counter: " + simulatedFailure);
simulatedFailure++;
if(event == InjectionEvent.INGEST_READ_OP && ((simulatedFailure % 3) == 1)){
LOG.info("Throwing checksum exception");
throw new ChecksumException("Testing checksum exception...", 0);
}
if(event == InjectionEvent.INGEST_READ_OP && ((simulatedFailure % 7) == 1)){
LOG.info("Throwing IO exception");
throw new IOException("Testing IO exception...");