This is an automated email from the ASF dual-hosted git repository.
davsclaus 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 958ff11 A component must have default no-arg constructor. This fixes
issue with the camel-kafka-starter module.
958ff11 is described below
commit 958ff114ae2e30e860b4e056adda721b7c99787e
Author: Claus Ibsen <[email protected]>
AuthorDate: Fri Dec 15 09:15:04 2017 +0100
A component must have default no-arg constructor. This fixes issue with the
camel-kafka-starter module.
---
.../src/main/java/org/apache/camel/component/kafka/KafkaComponent.java | 3 +++
1 file changed, 3 insertions(+)
diff --git
a/components/camel-kafka/src/main/java/org/apache/camel/component/kafka/KafkaComponent.java
b/components/camel-kafka/src/main/java/org/apache/camel/component/kafka/KafkaComponent.java
index b6f1fb0..6c83657 100644
---
a/components/camel-kafka/src/main/java/org/apache/camel/component/kafka/KafkaComponent.java
+++
b/components/camel-kafka/src/main/java/org/apache/camel/component/kafka/KafkaComponent.java
@@ -41,6 +41,9 @@ public class KafkaComponent extends DefaultComponent
implements SSLContextParame
@Metadata(label = "consumer,advanced")
private KafkaManualCommitFactory kafkaManualCommitFactory = new
DefaultKafkaManualCommitFactory();
+ public KafkaComponent() {
+ }
+
public KafkaComponent(CamelContext context) {
super(context);
}
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].