return;
}
tracker.truncateFromTail(deleteStart, lastLsn);
TransactionConfig config = new TransactionConfig();
/*
* Be sure to commit synchronously so that changes to the vlsn index
* are persisted before the log is truncated. There are no feeders or
* repstream write operations at this time, so the use of COMMIT_SYNC
* does not introduce any lock contention. [#20702]
*/
config.setDurability(Durability.COMMIT_SYNC);
Txn txn = Txn.createLocalTxn(envImpl, config);
boolean success = false;
try {
pruneDatabaseTail(deleteStart, lastLsn, txn);
flushToDatabase(txn);