All of the hystrix examples are applied directly to an endpoint like -
.hystrix()
.hystrixConfiguration().executionTimeoutInMilliseconds(4000).end()
.to("direct:fast")
.onFallback()
.transform().constant("Fallback message")
.end() .

How do we this to apply the hystrix configuration to a routing slip? Is
this possible? Any ideas are appreciated.

Reply via email to