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-kafka-connector-examples.git


The following commit(s) were added to refs/heads/master by this push:
     new 0bd0b68  Use the new topics property placeholder for source connectors
0bd0b68 is described below

commit 0bd0b686c2e67718f661ec94eb7bc14a1ed8ea5a
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Wed May 20 16:03:01 2020 +0200

    Use the new topics property placeholder for source connectors
---
 aws-s3-to-jms/README.md                                                | 2 +-
 aws-s3-to-jms/config/CamelAWSS3SourceConnector.properties              | 2 +-
 aws2-sqs/aws2-sqs-source/README.md                                     | 2 +-
 aws2-sqs/aws2-sqs-source/config/CamelAWS2SQSSourceConnector.properties | 2 +-
 cql/cql-source/README.md                                               | 2 +-
 cql/cql-source/config/CamelCassandraQLSourceConnector.properties       | 2 +-
 file/file-source/README.md                                             | 2 +-
 file/file-source/config/CamelFileSourceConnector.properties            | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/aws-s3-to-jms/README.md b/aws-s3-to-jms/README.md
index bb266f6..cc8c444 100644
--- a/aws-s3-to-jms/README.md
+++ b/aws-s3-to-jms/README.md
@@ -54,7 +54,7 @@ 
value.converter=org.apache.camel.kafkaconnector.awss3.converters.S3ObjectConvert
 
 camel.source.maxPollDuration=10000
 
-camel.source.kafka.topic=mytopic
+topics=mytopic
 
 camel.source.url=aws-s3://camel-kafka-connector?autocloseBody=false
 
diff --git a/aws-s3-to-jms/config/CamelAWSS3SourceConnector.properties 
b/aws-s3-to-jms/config/CamelAWSS3SourceConnector.properties
index 5fd1ba7..9c0d586 100644
--- a/aws-s3-to-jms/config/CamelAWSS3SourceConnector.properties
+++ b/aws-s3-to-jms/config/CamelAWSS3SourceConnector.properties
@@ -22,7 +22,7 @@ 
value.converter=org.apache.camel.kafkaconnector.awss3.converters.S3ObjectConvert
 
 camel.source.maxPollDuration=10000
 
-camel.source.kafka.topic=mytopic
+topics=mytopic
 
 camel.source.url=aws-s3://camel-kafka-connector?autocloseBody=false
 
diff --git a/aws2-sqs/aws2-sqs-source/README.md 
b/aws2-sqs/aws2-sqs-source/README.md
index 802c42f..ac5585d 100644
--- a/aws2-sqs/aws2-sqs-source/README.md
+++ b/aws2-sqs/aws2-sqs-source/README.md
@@ -44,7 +44,7 @@ 
value.converter=org.apache.kafka.connect.storage.StringConverter
 
 camel.source.maxPollDuration=10000
 
-camel.source.kafka.topic=mytopic
+topics=mytopic
 
 camel.source.url=aws2-sqs://camel-1?deleteAfterRead=false&deleteIfFiltered=true
 
diff --git 
a/aws2-sqs/aws2-sqs-source/config/CamelAWS2SQSSourceConnector.properties 
b/aws2-sqs/aws2-sqs-source/config/CamelAWS2SQSSourceConnector.properties
index 9aa53eb..6420890 100644
--- a/aws2-sqs/aws2-sqs-source/config/CamelAWS2SQSSourceConnector.properties
+++ b/aws2-sqs/aws2-sqs-source/config/CamelAWS2SQSSourceConnector.properties
@@ -22,7 +22,7 @@ 
value.converter=org.apache.kafka.connect.storage.StringConverter
 
 camel.source.maxPollDuration=10000
 
-camel.source.kafka.topic=mytopic
+topics=mytopic
 
 camel.source.path.queueNameOrArn=camel-1
 camel.source.endpoint.deleteAfterRead=false
diff --git a/cql/cql-source/README.md b/cql/cql-source/README.md
index bb340e9..266a1ff 100644
--- a/cql/cql-source/README.md
+++ b/cql/cql-source/README.md
@@ -89,7 +89,7 @@ 
connector.class=org.apache.camel.kafkaconnector.cql.CamelCqlSourceConnector
 key.converter=org.apache.kafka.connect.storage.StringConverter
 value.converter=org.apache.kafka.connect.storage.StringConverter
 
-camel.source.kafka.topic=mytopic
+topics=mytopic
 
 camel.source.path.hosts=172.17.0.2
 camel.source.path.keyspace=9042/test
diff --git a/cql/cql-source/config/CamelCassandraQLSourceConnector.properties 
b/cql/cql-source/config/CamelCassandraQLSourceConnector.properties
index 7346b56..63b3939 100644
--- a/cql/cql-source/config/CamelCassandraQLSourceConnector.properties
+++ b/cql/cql-source/config/CamelCassandraQLSourceConnector.properties
@@ -20,7 +20,7 @@ 
connector.class=org.apache.camel.kafkaconnector.cql.CamelCqlSourceConnector
 key.converter=org.apache.kafka.connect.storage.StringConverter
 value.converter=org.apache.kafka.connect.storage.StringConverter
 
-camel.source.kafka.topic=mytopic
+topics=mytopic
 
 camel.source.path.hosts=172.17.0.2
 camel.source.path.keyspace=9042/test
diff --git a/file/file-source/README.md b/file/file-source/README.md
index 531bdd8..8be8ea9 100644
--- a/file/file-source/README.md
+++ b/file/file-source/README.md
@@ -44,7 +44,7 @@ 
value.converter=org.apache.kafka.connect.storage.StringConverter
 
 camel.source.maxPollDuration=10000
 
-camel.source.kafka.topic=mytopic
+topics=mytopic
 
 camel.source.path.directoryName=/tmp/kafkastuff/
 camel.source.endpoint.idempotent=true
diff --git a/file/file-source/config/CamelFileSourceConnector.properties 
b/file/file-source/config/CamelFileSourceConnector.properties
index 7d59544..143527c 100644
--- a/file/file-source/config/CamelFileSourceConnector.properties
+++ b/file/file-source/config/CamelFileSourceConnector.properties
@@ -22,7 +22,7 @@ 
value.converter=org.apache.kafka.connect.storage.StringConverter
 
 camel.source.maxPollDuration=10000
 
-camel.source.kafka.topic=mytopic
+topics=mytopic
 
 camel.source.path.directoryName=/tmp/kafkastuff/
 camel.source.endpoint.idempotent=true

Reply via email to