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/05 04:12:00 UTC

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

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

Claus Ibsen resolved CAMEL-13388.
---------------------------------
    Resolution: Fixed
      Assignee: Claus Ibsen

> 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.3, 2.23.1, 3.0.0-M1
>            Reporter: Artem Ivanov
>            Assignee: Claus Ibsen
>            Priority: Major
>              Labels: easyfix
>             Fix For: 3.0.0, 2.23.2, 2.24.0, 2.22.4, 3.0.0-M3
>
>
> 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)