I figured it out finally. The way I did was I created a thread pool executor
and added it as a service. 

                ThreadPoolBuilder builder = new ThreadPoolBuilder(context);
                ExecutorService myPool = builder.build("threadPoolExecutor");
                
                context.addService(myPool);



This fixed my issue. 



--
View this message in context: 
http://camel.465427.n5.nabble.com/CamelBlueprintTestSupport-errors-out-when-the-blueprint-has-a-custom-threadpool-tp5788903p5789185.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to