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 2018/12/20 11:18:54 UTC

[camel] branch master updated: Fixed typo in blob URI example

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 ff5fbcf  Fixed typo in blob URI example
ff5fbcf is described below

commit ff5fbcf4f8c6db62796c17f4996fd9e7b6b00395
Author: Matt Watson <ma...@googlemail.com>
AuthorDate: Thu Dec 20 11:15:28 2018 +0000

    Fixed typo in blob URI example
---
 components/camel-azure/src/main/docs/azure-blob-component.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-azure/src/main/docs/azure-blob-component.adoc b/components/camel-azure/src/main/docs/azure-blob-component.adoc
index 77c2340..4209bbb 100644
--- a/components/camel-azure/src/main/docs/azure-blob-component.adoc
+++ b/components/camel-azure/src/main/docs/azure-blob-component.adoc
@@ -221,7 +221,7 @@ and refer to it in your Camel azure-blob component configuration:
 
 [source,java]
 --------------------------------------------------------------------------------
-from("azure-blob:/camelazure/container1/blockBlob?azureBlobClient=#client")
+from("azure-blob://camelazure/container1/blockBlob?azureBlobClient=#client")
 .to("mock:result");
 --------------------------------------------------------------------------------