Apache Camel- Message Redelivery happens before onexception block executes
问题 Have the following camel route. @Override public void configure() throws Exception { onException(java.lang.Exception.class).useOriginalMessage() .beanRef("discoveryService", "updateConnection") .redeliveryPolicyRef("redeliverMessagePolicy"); from(ENDPOINT_URI).to(queueName); } with Redelivery policy defined as following in xml- <redeliveryPolicyProfile id="redeliverMessagePolicy" retryAttemptedLogLevel="WARN" maximumRedeliveries="8" redeliveryDelay="${redeliveryDelay}" /> However when an