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

davsclaus pushed a commit to branch camel-2.22.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-2.22.x by this push:
     new 96cfdd2  CAMEL-13388: Wrong removing parameters logic in 
ServiceComponent. (#2858)
96cfdd2 is described below

commit 96cfdd2cd37d65723ce12e8b3c198761eadf3e59
Author: Artem Ivanov <[email protected]>
AuthorDate: Sun Apr 7 10:30:18 2019 +0300

    CAMEL-13388: Wrong removing parameters logic in ServiceComponent. (#2858)
---
 .../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 b15fe0e..abc82e5 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
@@ -101,6 +101,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<>();
 

Reply via email to