This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch 3.x-ftp-autocreate in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit 68332be63ea90b4d72006cfb652f7c612cda0fe4 Author: Andrea Cosentino <[email protected]> AuthorDate: Fri Mar 10 09:45:47 2023 +0100 SFTP sink - Add autocreate option for consistency with the source Signed-off-by: Andrea Cosentino <[email protected]> --- kamelets/sftp-sink.kamelet.yaml | 4 ++-- kamelets/sftp-source.kamelet.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kamelets/sftp-sink.kamelet.yaml b/kamelets/sftp-sink.kamelet.yaml index 3164918c..c7f72123 100644 --- a/kamelets/sftp-sink.kamelet.yaml +++ b/kamelets/sftp-sink.kamelet.yaml @@ -114,7 +114,7 @@ spec: default: true x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:checkbox' - autocreate: + autoCreate: title: Autocreate Missing Directories description: Automatically create the directory the files should be written to. type: boolean @@ -154,4 +154,4 @@ spec: passiveMode: "{{passiveMode}}" fileExist: "{{fileExist}}" binary: "{{binary}}" - autocreate: "{{autocreate}}" + autoCreate: "{{autoCreate}}" diff --git a/kamelets/sftp-source.kamelet.yaml b/kamelets/sftp-source.kamelet.yaml index 1b5014f2..ef157767 100644 --- a/kamelets/sftp-source.kamelet.yaml +++ b/kamelets/sftp-source.kamelet.yaml @@ -152,7 +152,7 @@ spec: idempotent: "{{idempotent}}" ignoreFileNotFoundOrPermissionError: "{{ignoreFileNotFoundOrPermissionError}}" binary: "{{binary}}" - autocreate: "{{autocreate}}" + autoCreate: "{{autoCreate}}" steps: - set-body: simple: "${body.getBody()}"
