-
Bug
-
Resolution: Done
-
Trivial
-
5.9.6.Final
-
None
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);