You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Guillaume Nodet (JIRA)" <ji...@apache.org> on 2018/09/03 10:13:00 UTC

[jira] [Resolved] (CAMEL-12770) Allow endpoints to migrate from the dynamic to the static map in the endpoint registry

     [ https://issues.apache.org/jira/browse/CAMEL-12770?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Guillaume Nodet resolved CAMEL-12770.
-------------------------------------
       Resolution: Fixed
    Fix Version/s: 2.23.0

https://github.com/apache/camel/commit/dedd9466d43ce9711e330b22f6c7db240f030668

> Allow endpoints to migrate from the dynamic to the static map in the endpoint registry
> --------------------------------------------------------------------------------------
>
>                 Key: CAMEL-12770
>                 URL: https://issues.apache.org/jira/browse/CAMEL-12770
>             Project: Camel
>          Issue Type: Improvement
>            Reporter: Guillaume Nodet
>            Assignee: Guillaume Nodet
>            Priority: Major
>             Fix For: 2.23.0
>
>
> A typical use case is when using something like
> {code:java}
> errorHandler(deadLetterChannel("direct:error")
>         .maximumRedeliveries(2)
>         .redeliveryDelay(0));
> from("direct:error")
>         .routeId("error")
>         .errorHandler(deadLetterChannel("log:dead?level=ERROR"))
>         .to("mock:error")
>         .to("file:error");
> {code}
> In such a case, the {{direct:error}} endpoint is create in the dynamic map only.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)