You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by de...@apache.org on 2010/03/17 16:17:17 UTC

svn commit: r924330 - /activemq/branches/activemq-5.3/assembly/src/release/webapps/camel/WEB-INF/applicationContext.xml

Author: dejanb
Date: Wed Mar 17 15:17:17 2010
New Revision: 924330

URL: http://svn.apache.org/viewvc?rev=924330&view=rev
Log:
merging 924325 https://issues.apache.org/activemq/browse/AMQ-2448 - activemq camel component causes thread leaks

Modified:
    activemq/branches/activemq-5.3/assembly/src/release/webapps/camel/WEB-INF/applicationContext.xml

Modified: activemq/branches/activemq-5.3/assembly/src/release/webapps/camel/WEB-INF/applicationContext.xml
URL: http://svn.apache.org/viewvc/activemq/branches/activemq-5.3/assembly/src/release/webapps/camel/WEB-INF/applicationContext.xml?rev=924330&r1=924329&r2=924330&view=diff
==============================================================================
--- activemq/branches/activemq-5.3/assembly/src/release/webapps/camel/WEB-INF/applicationContext.xml (original)
+++ activemq/branches/activemq-5.3/assembly/src/release/webapps/camel/WEB-INF/applicationContext.xml Wed Mar 17 15:17:17 2010
@@ -51,12 +51,7 @@
 
     <!-- configure the camel activemq component to use the current broker -->
     <bean id="activemq" class="org.apache.activemq.camel.component.ActiveMQComponent" >
-        <property name="connectionFactory">
-          <bean class="org.apache.activemq.ActiveMQConnectionFactory">
-            <property name="brokerURL" value="vm://localhost?create=false&amp;waitForStart=10000" />
-            <property name="userName" value="${activemq.username}"/>
-            <property name="password" value="${activemq.password}"/>
-          </bean>
-        </property>
+       <property name="userName" value="${activemq.username}"/>
+       <property name="password" value="${activemq.password}"/>
     </bean>
 </beans>