[ 
https://issues.apache.org/jira/browse/CAMEL-17618?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17901747#comment-17901747
 ] 

Freeman Yue Fang commented on CAMEL-17618:
------------------------------------------

Hi [~ud01],

I don't think the question you posted is relevant to this jira ticket.

Could you please post your question to camel users mailing list? With the 
details how you deploy your camel(like which runtime are you using)? 

Thanks!
Freeman 

> camel-ref: only add the endpoint into camelContext when not exist
> -----------------------------------------------------------------
>
>                 Key: CAMEL-17618
>                 URL: https://issues.apache.org/jira/browse/CAMEL-17618
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-core
>    Affects Versions: 3.15.0
>            Reporter: Freeman Yue Fang
>            Assignee: Freeman Yue Fang
>            Priority: Minor
>             Fix For: 3.11.6, 3.14.2, 3.16.0
>
>
> Currently camel-ref endpoint always adds the underlying endpoint like
> getCamelContext().addEndpoint(getEndpoint().getEndpointUri(), endpoint);
> We should check if it exists or not firstly like
>         if (getCamelContext().getEndpoint(getEndpoint().getEndpointUri()) == 
> null) {
>                getCamelContext().addEndpoint(getEndpoint().getEndpointUri(), 
> endpoint);
>        }
> Because if we re-add the same endpoint, this endpoint actually will be stopped



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

Reply via email to