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/08/20 05:38:25 UTC

[camel] branch master updated: CAMEL-13879 : Fix Corda's component's documentation

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.git


The following commit(s) were added to refs/heads/master by this push:
     new e1bd909  CAMEL-13879 : Fix Corda's component's documentation
     new c404047  Merge pull request #3113 from amolpednekar/patch-1
e1bd909 is described below

commit e1bd909cd615a450ebafe87e0bbcb839993722d8
Author: Amol Pednekar <am...@gmail.com>
AuthorDate: Tue Aug 20 09:18:52 2019 +0530

    CAMEL-13879 : Fix Corda's component's documentation
---
 components/camel-corda/src/main/docs/corda-component.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-corda/src/main/docs/corda-component.adoc b/components/camel-corda/src/main/docs/corda-component.adoc
index e439eb4..9eb1a23 100644
--- a/components/camel-corda/src/main/docs/corda-component.adoc
+++ b/components/camel-corda/src/main/docs/corda-component.adoc
@@ -140,7 +140,7 @@ Subscribe for new vault state changes:
 
 [source,java]
 ---------------------------------------------------------------------------------------------
-from("corda://localhost:10006?username=user1&password=test?operation=VAULT_TRACK&contractStateClass=#contractStateClass")
+from("corda://localhost:10006?username=user1&password=test&operation=VAULT_TRACK&contractStateClass=#contractStateClass")
     .to("jms:queue:vault");
 ---------------------------------------------------------------------------------------------
 
@@ -149,5 +149,5 @@ Read the node information:
 [source,java]
 --------------------------------------------------------
 from("direct:start")
-    .to("corda://localhost:10006?username=user1&password=test?operation=NODE_INFO");
+    .to("corda://localhost:10006?username=user1&password=test&operation=NODE_INFO");
 --------------------------------------------------------