Apache Camel retry delivery attempt log issue

284 Views Asked by At

When retrying SQLException with max attempts of 3, i was logging the attempts and used below parameters for the same.

...... .maximumRedeliveries(3) .redeliveryDelay(1000) .asyncDelayedRedelivery() .logRetryAttempted(true) .log(LoggingLevel.ERROR, "retry attempts exhausted") .end();

The delivery attempts in the log are not in ascending order of the retry attempt made. Ex. "On delivery attempt: 3" was coming before "On delivery attempt: 2". Any thoughts on the issue please?

Camel Version : 3.4.0

I was expecting the delivery attempts in the log to be in ascending order of attempt made.

0

There are 0 best solutions below