Hi
I have two netty routes which are load balanced with failover and round robin
enabled.
from("direct:a")
.routeId("abc")
.streamCaching()
.onException(Exception.class)
.handled(true)
.to("log:com.abc.camel.logging?level=ERROR&showHeaders=true")
.end()
.loadBalance()
.failover(2, false, true)
.to(“netty:http:http://localhost:3000”,”netty:http:http://localhost:3001”)
end()
before sending to “direct a” I am setting method and uri path in processor.
The whole thing is working fine but when camel is done sending messages it
sends empty messages to base urls (“http://localhost:3000 or localhost:3001).
Is this ok or am I doing something wrong.
Can anyone help??
Sent from Mail for Windows 10