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:
Guillaume Nodet 2008-09-01 19:01:12 +00:00
parent ec3d9adae5
commit 1bd6be8a8e
1 changed files with 2 additions and 2 deletions

View File

@ -49,8 +49,8 @@ public class PooledConnectionFactoryBean implements FactoryBean, InitializingBea
private ConnectionFactory pooledConnectionFactory;
private ConnectionFactory connectionFactory;
private int maxConnections;
private int maximumActive;
private int maxConnections = 1;
private int maximumActive = 500;
private Object transactionManager;
private String resourceName;
private ObjectPoolFactory poolFactory;