[jboss-user] [JCA Development] New message: "feedback on JBAS-7195 (WrappedConnection.checkTransactionStatus throws exception when transaction is marked for roll back)"

Scott Marlow do-not-reply at jboss.com
Tue Feb 23 11:11:50 EST 2010


User development,

A new message was posted in the thread "feedback on JBAS-7195 (WrappedConnection.checkTransactionStatus throws exception when transaction is marked for roll back)":

http://community.jboss.org/message/527964#527964

Author  : Scott Marlow
Profile : http://community.jboss.org/people/smarlow@redhat.com

Message:
--------------------------------------------------------------
Any arguments against altering the change made for JBAS-5082 to relax TxConnectionManager.checkTransactionActive() as follows?
 
Change from:
 
  if (status != Status.STATUS_ACTIVE && status != Status.STATUS_PREPARING && status != Status.STATUS_PREPARED && status != Status.STATUS_COMMITTING)
    throw new RollbackException("Transaction " + tx + " cannot proceed " + TxUtils.getStatusAsString(status));
 
 
 
Change to:
  if (status != Status.STATUS_ACTIVE && status != Status.STATUS_PREPARING && status != Status.STATUS_PREPARED && status != Status.STATUS_COMMITTING && status != Status.STATUS_MARKED_ROLLBACK)
    throw new RollbackException("Transaction " + tx + " cannot proceed " + TxUtils.getStatusAsString(status));
 

--------------------------------------------------------------

To reply to this message visit the message page: http://community.jboss.org/message/527964#527964




More information about the jboss-user mailing list