I cannot set minThreads and maxThreads values when the endpoint is defined
for the following uri .

JettyHttpComponent (minThreads = null)


<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
  xsi:schemaLocation="...............">
  <camelContext xmlns="http://camel.apache.org/schema/spring";
autoStartup="true" id="camel">
    <endpoint id="Jetty1"
uri="jetty:http://0.0.0.0:12000/test?minThreads=3&amp;maxThreads=5"; />
    <route id="route_Jetty1">
      <from ref="Jetty1" />
      <setExchangePattern pattern="InOut" />
      <to uri="mock://Mock" />
    </route>
  </camelContext>
</beans>

I'm using Camel 2.10.4,  2.11.0.





--
View this message in context: 
http://camel.465427.n5.nabble.com/jetty-consumer-cannot-set-minThreads-and-maxThreads-from-uri-tp5734060.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to