git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1475842 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Timothy A. Bish 2013-04-25 16:25:51 +00:00
parent f2b01a7f01
commit 7057e819eb
1 changed files with 7 additions and 0 deletions

View File

@ -610,6 +610,13 @@ public abstract class MessageDatabase extends ServiceSupport implements BrokerSe
store(new KahaRollbackCommand().setTransactionInfo(TransactionIdConversion.convertToLocal(tx)), false, null, null);
}
}
synchronized (preparedTransactions) {
for (TransactionId txId : preparedTransactions.keySet()) {
LOG.warn("Recovered prepared XA TX: [{}]", txId);
}
}
} finally {
this.indexLock.writeLock().unlock();
}