This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch camel-2.23.x
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-2.23.x by this push:
new a340a04 CAMEL-13388: Wrong removing parameters logic in
ServiceComponent. (#2859)
a340a04 is described below
commit a340a048bf73fdf2c212f1ef8838b2ebf79211c3
Author: Artem Ivanov <[email protected]>
AuthorDate: Sun Apr 7 10:30:02 2019 +0300
CAMEL-13388: Wrong removing parameters logic in ServiceComponent. (#2859)
---
.../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<>();