Fix implementation of PoolingConnectionFactoryBean.createXAContext()

Closes gh-7306
This commit is contained in:
Johnny Lim 2016-11-04 11:50:10 +09:00 committed by Andy Wilkinson
parent 04a869bbe7
commit 5d8e0369e7
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ public class PoolingConnectionFactoryBean extends PoolingConnectionFactory
@Override
public XAJMSContext createXAContext(String username, String password) {
return this.createXAContext(username, password);
return this.connectionFactory.createXAContext(username, password);
}
}