You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/06/27 08:22:40 UTC

[camel] branch main updated: CAMEL-19489: camel-minio - Update docs

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

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new a5179a94568 CAMEL-19489: camel-minio - Update docs
a5179a94568 is described below

commit a5179a945689afa565c0a4dfa8cf16bc17741ec5
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Tue Jun 27 10:22:10 2023 +0200

    CAMEL-19489: camel-minio - Update docs
---
 components/camel-minio/src/main/docs/minio-component.adoc | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/components/camel-minio/src/main/docs/minio-component.adoc b/components/camel-minio/src/main/docs/minio-component.adoc
index 79fb811614b..7d961b24535 100644
--- a/components/camel-minio/src/main/docs/minio-component.adoc
+++ b/components/camel-minio/src/main/docs/minio-component.adoc
@@ -36,7 +36,7 @@ For example in order to read file `hello.txt` from the bucket `helloBucket`, use
 
 [source,java]
 --------------------------------------------------------------------------------
-from("minio://helloBucket?accessKey=yourAccessKey&secretKey=yourSecretKey&prefix=hello.txt")
+from("minio://helloBucket?accessKey=yourAccessKey&secretKey=yourSecretKey&objectName=hello.txt")
   .to("file:/var/downloaded");
 --------------------------------------------------------------------------------
 
@@ -66,8 +66,6 @@ This allows you for instance to know how many messages exists in this
 batch and for instance let the Aggregator
 aggregate this number of messages.
 
-== Usage
-
 // component headers: START
 include::partial$component-endpoint-headers.adoc[]
 // component headers: END