mirror of https://github.com/apache/activemq.git
AMQ-3022 - Reverting changes for transaction suspend/resume due to broken tests
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1034430 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
40790f0e45
commit
c9c6e62a60
|
@ -334,17 +334,12 @@ public class TransactionContext implements XAResource {
|
||||||
throw new XAException(XAException.XAER_PROTO);
|
throw new XAException(XAException.XAER_PROTO);
|
||||||
}
|
}
|
||||||
|
|
||||||
String txSuspendResumeNotSupportMsg = "The suspend/resume of a transaction "
|
// if ((flags & TMJOIN) == TMJOIN) {
|
||||||
+ "is not supported. Instead it is recommended that a new JMS session be created.";
|
|
||||||
|
|
||||||
if ((flags & TMJOIN) == TMJOIN) {
|
|
||||||
throw new XAException(txSuspendResumeNotSupportMsg);
|
|
||||||
// TODO: verify that the server has seen the xid
|
// TODO: verify that the server has seen the xid
|
||||||
}
|
// // }
|
||||||
if ((flags & TMRESUME) == TMRESUME) {
|
// if ((flags & TMJOIN) == TMRESUME) {
|
||||||
throw new XAException(txSuspendResumeNotSupportMsg);
|
// // TODO: verify that the xid was suspended.
|
||||||
// TODO: verify that the xid was suspended.
|
// }
|
||||||
}
|
|
||||||
|
|
||||||
// associate
|
// associate
|
||||||
synchronizations = null;
|
synchronizations = null;
|
||||||
|
|
Loading…
Reference in New Issue