[jboss-jira] [JBoss JIRA] Closed: (JBAS-3628) Invalid fix for JBAS-3573
Adrian Brock (JIRA)
jira-events at jboss.com
Thu Sep 21 01:06:56 EDT 2006
[ http://jira.jboss.com/jira/browse/JBAS-3628?page=all ]
Adrian Brock closed JBAS-3628.
------------------------------
Resolution: Done
> 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: Adrian Brock
> Fix For: JBossAS-4.0.5.GA, JBossAS-5.0.0.Beta
>
>
> 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: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list