Re: FailoverTransport - "Successfully connected to..." log messages

2012-12-10 Thread boday
lhost:61666?randomize=false&timeout=1"; >> >> ActiveMQConnectionFactory factory = new >> >> ActiveMQConnectionFactory(failoverBrokerUrl); >> >> PooledConnectionFactory pcf = new PooledConnectionFactory(factory); >> >> pcf.setMaximumAc

Re: FailoverTransport - "Successfully connected to..." log messages

2012-12-10 Thread Raul Kripalani
tiveMQConnectionFactory(failoverBrokerUrl); > >> PooledConnectionFactory pcf = new PooledConnectionFactory(factory); > >> pcf.setMaximumActive(500); > >> pcf.setMaxConnections(5); > >> JMSTemplate jmsTemplate = new JmsTemplate(pcf); > >> jmsTemplate.setSessionAcknowledgeMode(Session.CLIENT_ACK

Re: FailoverTransport - "Successfully connected to..." log messages

2012-12-10 Thread Christian Posta
iveMQConnectionFactory(failoverBrokerUrl); > >> PooledConnectionFactory pcf = new PooledConnectionFactory(factory); > >> pcf.setMaximumActive(500); > >> pcf.setMaxConnections(5); > >> JMSTemplate jmsTemplate = new JmsTemplate(pcf); > >> jmsTemplate.setSessionAcknowledgeMode(Session.

Re: FailoverTransport - "Successfully connected to..." log messages

2012-12-10 Thread boday
factory); >> pcf.setMaximumActive(500); >> pcf.setMaxConnections(5); >> JMSTemplate jmsTemplate = new JmsTemplate(pcf); >> jmsTemplate.setSessionAcknowledgeMode(Session.CLIENT_ACKNOWLEDGE); >> > > > > -- > *Christian Posta* > http://www.christian

Re: FailoverTransport - "Successfully connected to..." log messages

2012-12-10 Thread Christian Posta
Nope, that shouldn't be expected. It should only log that if the connection is first created: if (firstConnection) { firstConnection = false; LOG.info("Successfully connected to " + uri);

FailoverTransport - "Successfully connected to..." log messages

2012-12-10 Thread boday
ssage in context: http://activemq.2283324.n4.nabble.com/FailoverTransport-Successfully-connected-to-log-messages-tp4660444.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.