]
Ondra Chaloupka updated JBTM-3124:
----------------------------------
Status: Resolved (was: Pull Request Sent)
Resolution: Done
io.narayana.spi.util.XADSWrapper infinite loop on getParentLogger()
method
--------------------------------------------------------------------------
Key: JBTM-3124
URL:
https://issues.jboss.org/browse/JBTM-3124
Project: JBoss Transaction Manager
Issue Type: Bug
Components: JTA
Affects Versions: 5.9.3.Final
Reporter: Ondra Chaloupka
Assignee: Ondra Chaloupka
Priority: Minor
The method {{getParentLogger()}} calls itself
https://github.com/jbosstm/narayana/blob/5.9.3.Final/ArjunaJTA/spi/src/te...
{code}
@Override
public Logger getParentLogger() throws SQLFeatureNotSupportedException {
return getParentLogger();
}
{code}