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/04/22 05:27:20 UTC

[camel] branch master updated: Fixed doc: FTPS implicit sample

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 1451f51  Fixed doc: FTPS implicit sample
1451f51 is described below

commit 1451f5113ac108ea4b8086c1bb80be8b70c20344
Author: gerdailger <ge...@ilger.at>
AuthorDate: Wed Apr 22 07:13:06 2020 +0200

    Fixed doc: FTPS implicit sample
    
    option was still called `isImplicit` (Camel 2.x). Changed to `implicit`.
---
 components/camel-ftp/src/main/docs/ftp-component.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-ftp/src/main/docs/ftp-component.adoc b/components/camel-ftp/src/main/docs/ftp-component.adoc
index be20e12..35238b1 100644
--- a/components/camel-ftp/src/main/docs/ftp-component.adoc
+++ b/components/camel-ftp/src/main/docs/ftp-component.adoc
@@ -623,7 +623,7 @@ And the route using Spring DSL:
 
 [source,java]
 ----
-from("ftps://admin@localhost:2222/public/camel?password=admin&securityProtocol=SSL&isImplicit=true
+from("ftps://admin@localhost:2222/public/camel?password=admin&securityProtocol=SSL&implicit=true
       &ftpClient.keyStore.file=./src/test/resources/server.jks
       &ftpClient.keyStore.password=password&ftpClient.keyStore.keyPassword=password")
   .to("bean:foo");