]
Work on JBTM-2939 started by Ondra Chaloupka.
---------------------------------------------
JTS for not putting transaction to heuristic state during recovery
for XAException.XAER_NOTA
--------------------------------------------------------------------------------------------
Key: JBTM-2939
URL:
https://issues.jboss.org/browse/JBTM-2939
Project: JBoss Transaction Manager
Issue Type: Enhancement
Components: JTS
Affects Versions: 5.7.0.Final
Reporter: Ondra Chaloupka
Assignee: Ondra Chaloupka
JTS moves transaction to heuristic state when participant during recovery returns
{{XAExeption.XAER_NOTA}} error code. This is a bit pointless as this particular error code
does not mean that there was some trouble with RM but that RM just already does not know
about the transaction branch. For recovery it means that the branch was
committed/rolled-back either before recovery started or in some previous recovery run
(where probably something crashed).
We can assumed the transaction was completed and ignore the {{XAER_NOTA}} (in case of
recovery). This behaviour is already present in JTA.
This came from EAP issue: JBEAP-13023 where you can find more on the reproducing.