[
https://issues.apache.org/jira/browse/CAMEL-6448?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Christian Müller updated CAMEL-6448:
------------------------------------
Component/s: (was: camel-core)
website
Affects Version/s: (was: 2.10.4)
(was: 2.10.3)
(was: 2.11.0)
> Incorrect documentation for XML redeliveryPolicyRef in OnException clause
> -------------------------------------------------------------------------
>
> Key: CAMEL-6448
> URL: https://issues.apache.org/jira/browse/CAMEL-6448
> Project: Camel
> Issue Type: Bug
> Components: website
> Reporter: Ben Kiefer
> Assignee: Christian Müller
> Priority: Trivial
> Labels: documentation, onException, redelivery
>
> The example in the documentation on the onException page
> (http://camel.apache.org/exception-clause.html) shows incorrect configuration
> of an external redelivery policy.
> It currently shows:
> <bean id="myRedeliveryPolicy"
> class="org.apache.camel.processor.RedeliveryPolicy">
> <property name="maximumRedeliveries" value="${myprop.max}"/>
> </bean>
> <onException>
> <!-- you can define multiple exceptions just adding more exception
> elements as show below -->
> <exception>com.mycompany.MyFirstException</exception>
> <exception>com.mycompany.MySecondException</exception>
> <!-- here we reference our redelivery policy defined above -->
> <redeliveryPolicy ref="myRedeliveryPolicy"/>
> </onException>
> But it should be:
> <bean id="myRedeliveryPolicy"
> class="org.apache.camel.processor.RedeliveryPolicy">
> <property name="maximumRedeliveries" value="${myprop.max}"/>
> </bean>
> <onException redeliveryPolicyRef="myRedeliveryPolicy">
> <exception>com.mycompany.MyFirstException</exception>
> <exception>com.mycompany.MySecondException</exception>
> <!-- more config here -->
> </onException>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira