Hi,
I've got graceful shutdown issue that can be reproduced with this route:
errorHandler(deadLetterChannel("direct:queue2")
.maximumRedeliveries(1)
);
from("seda:queue1")
.log("Checkpoint 1")
.split(body())
.log("Checkpoint 2")
.end()
.log("Checkpoint 3");
from("direct:queue2")
.log("Checkpoint 4");
If ".maximumRedeliveries(1)" is commented out, it works as expected, but
with this line, message stays in flight and "Checkpoint 2" is never reached.
Is this a Camel bug, if not, how can it be fixed?
Best regards,
Miljenko
--
View this message in context:
http://camel.465427.n5.nabble.com/Graceful-shutdown-not-working-tp5733697.html
Sent from the Camel - Users mailing list archive at Nabble.com.