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/12/13 11:40:32 UTC

[camel-kafka-connector] 03/03: Camel-cassandraql sink example: Use localhost as default host

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

acosentino pushed a commit to branch cassandraql-sink
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git

commit 1411d6b3fbd0e3784cabd6d9973943e24276a9f0
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Dec 13 12:32:35 2019 +0100

    Camel-cassandraql sink example: Use localhost as default host
---
 examples/CamelCassandraQLSinkConnector.properties | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/CamelCassandraQLSinkConnector.properties b/examples/CamelCassandraQLSinkConnector.properties
index 7f03186..e030f95 100644
--- a/examples/CamelCassandraQLSinkConnector.properties
+++ b/examples/CamelCassandraQLSinkConnector.properties
@@ -22,6 +22,6 @@ connector.class=org.apache.camel.kafkaconnector.CamelSinkConnector
 key.converter=org.apache.kafka.connect.storage.StringConverter
 value.converter=org.apache.kafka.connect.storage.StringConverter
 
-camel.sink.url=cql://172.17.0.2/test?cql=insert into users(id, name) values (now(), ?)
+camel.sink.url=cql://localhost/test?cql=insert into users(id, name) values (now(), ?)