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/04 07:34:16 UTC

[camel] 01/02: CAMEL-15499 - camel-azure-storage-queue: wrong syntax in the component json

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

acosentino pushed a commit to branch CAMEL-15499-3.4.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit c24818eb3e16c5eb5f234cdd64f028045710023c
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Sep 4 08:36:33 2020 +0200

    CAMEL-15499 - camel-azure-storage-queue: wrong syntax in the component json
---
 .../org/apache/camel/component/azure/storage/queue/QueueEndpoint.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/components/camel-azure-storage-queue/src/main/java/org/apache/camel/component/azure/storage/queue/QueueEndpoint.java b/components/camel-azure-storage-queue/src/main/java/org/apache/camel/component/azure/storage/queue/QueueEndpoint.java
index fd53099..136e792 100644
--- a/components/camel-azure-storage-queue/src/main/java/org/apache/camel/component/azure/storage/queue/QueueEndpoint.java
+++ b/components/camel-azure-storage-queue/src/main/java/org/apache/camel/component/azure/storage/queue/QueueEndpoint.java
@@ -34,7 +34,8 @@ import org.apache.camel.util.ObjectHelper;
 /**
  * The azure-storage-queue component is used for storing and retrieving the messages to/from Azure Storage Queue using Azure SDK v12.
  */
-@UriEndpoint(firstVersion = "3.3.0", scheme = "azure-storage-queue", title = "Azure Storage Queue Service", syntax = "azure-storage-queue:queueName", category = {Category.CLOUD, Category.MESSAGING})
+@UriEndpoint(firstVersion = "3.3.0", scheme = "azure-storage-queue", title = "Azure Storage Queue Service",
+             syntax = "azure-storage-queue:accountName/queueName", category = { Category.CLOUD, Category.MESSAGING })
 public class QueueEndpoint extends DefaultEndpoint {
 
     private QueueServiceClient queueServiceClient;