]
Adrian Brock updated JBAS-3628:
-------------------------------
Component/s: JMS service
Invalid fix for JBAS-3573
-------------------------
Key: JBAS-3628
URL:
http://jira.jboss.com/jira/browse/JBAS-3628
Project: JBoss Application Server
Issue Type: Sub-task
Security Level: Public(Everyone can see)
Components: JMS service
Reporter: Luc Texier
Assigned To: Luc Texier
Fix For: JBossAS-5.0.0.Beta, JBossAS-4.0.5.GA
in case of an exception, both a PostCommit Task and a PostRollback Task should be added
try
{
if (m.isPersistent())
server.getPersistenceManager().remove(m, txId);
}
catch (Throwable t)
{
// Something is wrong with the persistence manager,
// force a NACK with a rollback/error
Runnable task = new RestoreMessageTask(m);
TxManager txManager = server.getPersistenceManager().getTxManager();
+ txManager.addPostCommitTask(txId, task);
txManager.addPostRollbackTask(txId, task);
SpyJMSException.rethrowAsJMSException("Error during ACK ref=" + m,
t);
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: