This is an automated email from the ASF dual-hosted git repository. oalsafi 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 f9a1a62 Update debezium-mongodb-component.adoc f9a1a62 is described below commit f9a1a626806d222bf2f5eb808a0d0faff9f43728 Author: Omar Al-Safi <omars...@gmail.com> AuthorDate: Thu Jun 25 10:33:02 2020 +0200 Update debezium-mongodb-component.adoc --- docs/components/modules/ROOT/pages/debezium-mongodb-component.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/components/modules/ROOT/pages/debezium-mongodb-component.adoc b/docs/components/modules/ROOT/pages/debezium-mongodb-component.adoc index 58536ba..63c357c 100644 --- a/docs/components/modules/ROOT/pages/debezium-mongodb-component.adoc +++ b/docs/components/modules/ROOT/pages/debezium-mongodb-component.adoc @@ -206,7 +206,7 @@ The message body if is not `null` (in case of tombstones), it contains the state Here is a very simple route that you can use in order to listen to Debezium events from MongoDB connector. [source,java] ---- -from("debezium-mongodb:dbz-test-1?offsetStorageFileName=/usr/offset-file-1.dat&mongodbHosts=rs0/localhost:27017&mongodbUser=debezium&mongodbPassword=dbz&mongodbName=dbserver1&databaseHistoryFileName=/usr/history-file-1.dat") +from("debezium-mongodb:dbz-test-1?offsetStorageFileName=/usr/offset-file-1.dat&mongodbHosts=rs0/localhost:27017&mongodbUser=debezium&mongodbPassword=dbz&mongodbName=dbserver1&databaseHistoryFileFilename=/usr/history-file-1.dat") .log("Event received from Debezium : ${body}") .log(" with this identifier ${headers.CamelDebeziumIdentifier}") .log(" with these source metadata ${headers.CamelDebeziumSourceMetadata}")