mirror of https://github.com/apache/activemq.git
AMQ-1923: the defaut value for the maximumActive property on the PooledConnectionFactoryBean is 0, making it unusable
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@691030 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ec3d9adae5
commit
1bd6be8a8e
|
@ -49,8 +49,8 @@ public class PooledConnectionFactoryBean implements FactoryBean, InitializingBea
|
||||||
|
|
||||||
private ConnectionFactory pooledConnectionFactory;
|
private ConnectionFactory pooledConnectionFactory;
|
||||||
private ConnectionFactory connectionFactory;
|
private ConnectionFactory connectionFactory;
|
||||||
private int maxConnections;
|
private int maxConnections = 1;
|
||||||
private int maximumActive;
|
private int maximumActive = 500;
|
||||||
private Object transactionManager;
|
private Object transactionManager;
|
||||||
private String resourceName;
|
private String resourceName;
|
||||||
private ObjectPoolFactory poolFactory;
|
private ObjectPoolFactory poolFactory;
|
||||||
|
|
Loading…
Reference in New Issue