You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/04/06 09:03:26 UTC

[camel] branch master updated: CAMEL-13388: Wrong removing parameters logic in ServiceComponent.

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new a1cd35a  CAMEL-13388: Wrong removing parameters logic in ServiceComponent.
a1cd35a is described below

commit a1cd35a118e183c7c0836602df1a83a14ab2fbfc
Author: Artem Ivanov <ai...@jtconsulting.ru>
AuthorDate: Fri Apr 5 14:35:49 2019 +0300

    CAMEL-13388: Wrong removing parameters logic in ServiceComponent.
---
 .../java/org/apache/camel/component/service/ServiceEndpoint.java     | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/components/camel-service/src/main/java/org/apache/camel/component/service/ServiceEndpoint.java b/components/camel-service/src/main/java/org/apache/camel/component/service/ServiceEndpoint.java
index 20234f0..d9ee53c 100644
--- a/components/camel-service/src/main/java/org/apache/camel/component/service/ServiceEndpoint.java
+++ b/components/camel-service/src/main/java/org/apache/camel/component/service/ServiceEndpoint.java
@@ -100,6 +100,11 @@ public class ServiceEndpoint extends DefaultEndpoint implements DelegateEndpoint
         return true;
     }
 
+    @Override
+    public boolean isLenientProperties() {
+        return true;
+    } 
+
     private ServiceDefinition computeServiceDefinition(CamelContext context, Endpoint delegateEndpoint) {
         Map<String, String> parameters = new HashMap<>();