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 2020/09/09 09:40:48 UTC

[camel] branch master updated: Fix azure-storage-queue example (#4178)

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 230d25c  Fix azure-storage-queue example (#4178)
230d25c is described below

commit 230d25c4d70a8a06bf77cb67dd5b3517cd68d48b
Author: Mark Andreev <ma...@gmail.com>
AuthorDate: Wed Sep 9 12:40:14 2020 +0300

    Fix azure-storage-queue example (#4178)
    
    * Fix azure-storage-queue example
    
    1. Remove parameter accountName from query parameters
    2. Add tip for use url encoding for accessKey because it can contain special chars like `=` or `+`. So `URLEncoder.encode` should solve this problem
    
    * Update azure-storage-queue-component.adoc
---
 docs/components/modules/ROOT/pages/azure-storage-queue-component.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/components/modules/ROOT/pages/azure-storage-queue-component.adoc b/docs/components/modules/ROOT/pages/azure-storage-queue-component.adoc
index 7d7275c..56df054 100644
--- a/docs/components/modules/ROOT/pages/azure-storage-queue-component.adoc
+++ b/docs/components/modules/ROOT/pages/azure-storage-queue-component.adoc
@@ -52,10 +52,10 @@ The queue will be created if it does not already exist.
 You can append query options to the URI in the following format, ?options=value&option2=value&...
 
 For example in order to get a message content from the queue `messageQueue`
-in the `camelazure` storage account and, use the following snippet:
+in the `storageAccount` storage account and, use the following snippet:
 [source,java]
 --------------------------------------------------------------------------------
-from("azure-storage-queue://camelazure/messageQueue?accountName=yourAccountName&accessKey=yourAccessKey").
+from("azure-storage-queue://storageAccount/messageQueue?accessKey=yourAccessKey").
 to("file://queuedirectory");
 --------------------------------------------------------------------------------