Hello,

I can confirm that this behaviour is also with versions 3.7.2 and 3.8.0

I also found out that, when the optimizer is turned off the route works


 // not working

from("direct:test_http_dynamic")
.toD("http:test.dyn?socketTimeout=${in.header.timeout}");
 
// working
from("direct:test_http_dynamic_workaround")
.toD().allowOptimisedComponents(false).cacheSize(10).uri("http:test.dyn?socketTimeout=${in.header.timeout}");
I created a ticket (MINOR)
https://issues.apache.org/jira/browse/CAMEL-16216


Best regards,
Josef


> Hi

> Can you try with 3.7.2 release and 3.8.0 release.
> And if its still a problem then create a JIRA ticket as its a little bug.

Reply via email to