]
Issue was automatically transitioned when Ondrej Chaloupka created pull request #1480 in
GitHub
-----------------------------------------------------------------------------------------------
Status: Pull Request Sent (was: Open)
BasicXARecovery class calculates the name of the XA recovery
properties file incorrectly if a number of connections is included
-------------------------------------------------------------------------------------------------------------------------------
Key: JBTM-3170
URL:
https://issues.jboss.org/browse/JBTM-3170
Project: JBoss Transaction Manager
Issue Type: Bug
Reporter: Simon Dallaway
Assignee: Ondrej Chaloupka
Priority: Trivial
The procedure initialise of BasicXARecovery incorrectly calculates the name of the XA
recovery properties file if a number of connections is included
The current code is
fileName = parameter.substring(0, breakPosition - 1);
The correct code should be
fileName = parameter.substring(0, breakPosition);