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

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

Artem Ivanov created CAMEL-13388:
------------------------------------

             Summary: 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: 3.0.0-M1, 2.23.1, 2.22.3, 2.22.1
            Reporter: Artem Ivanov


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)