DBZ-6355 Fix format

This commit is contained in:
Chris Cranford 2023-04-24 16:50:24 -04:00 committed by Chris Cranford
parent b954afd2cc
commit 3d7c87401f

View File

@ -149,7 +149,7 @@ public void abandonTransactions(Duration retention) throws InterruptedException
Map.Entry<String, MemoryTransaction> entry = iterator.next();
if (entry.getValue().getStartScn().compareTo(thresholdScn) <= 0) {
LOGGER.warn("Transaction {} with start SCN {} is being abandoned.",
entry.getKey(),entry.getValue().getStartScn());
entry.getKey(), entry.getValue().getStartScn());
abandonedTransactionsCache.add(entry.getKey());
iterator.remove();