You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Claus Ibsen (JIRA)" <ji...@apache.org> on 2019/04/02 07:06:00 UTC

[jira] [Commented] (CAMEL-13388) Wrong removing parameters logic in ServiceComponent.

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

Claus Ibsen commented on CAMEL-13388:
-------------------------------------

You are welcome to provide a fix via a github PR
https://github.com/apache/camel/

> Wrong removing parameters logic in ServiceComponent.
> ----------------------------------------------------
>
>                 Key: CAMEL-13388
>                 URL: https://issues.apache.org/jira/browse/CAMEL-13388
>             Project: Camel
>          Issue Type: Bug
>    Affects Versions: 2.22.1, 2.22.3, 2.23.1, 3.0.0-M1
>            Reporter: Artem Ivanov
>            Priority: Major
>              Labels: easyfix
>
> Component: camel-service
> Mistake in class : org.apache.camel.component.service.ServiceComponent.java:83
> This error prevents the delegating component from receiving URI parameters.
> *Have:*
> {code:java}
> parameters.keySet().removeAll(parameters.keySet());
> {code}
> *Must be:*
> {code:java}
> parameters.keySet().removeAll(params.keySet());
> {code}
>  



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