Hello, How do we configure hystrix fallback for dynamic router invoking
multiple endpoints, the catch with dynamic router is how to identify
failures out of multiple endpoint invocations.

*camel route:*
from(rmq:localhost/exchange?queue=somequeue).bean(SomeDynamicRouter.class)

class SomeDynamicRouter {

 @DynamicRouter
 public String next(String body, @Header(value = Exchange.SLIP_ENDPOINT)
String previous) {
  if (null == previous) {
   return <delimitedmultipleendpoints > ;
  } else {
   return null;
  }
 }
}




--
View this message in context: 
http://camel.465427.n5.nabble.com/hystrix-fallback-configuration-for-camel-dynamic-router-returning-multiple-endpoints-tp5798655.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to