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 2021/08/03 10:52:58 UTC

[camel] branch main updated: SftpOperations.java, spelling fix Strick -> Strict (#5913)

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 8efcef6  SftpOperations.java, spelling fix Strick -> Strict (#5913)
8efcef6 is described below

commit 8efcef6d08d96c02ffe81bc185121c35e8d92d53
Author: aSemy <ad...@gmail.com>
AuthorDate: Tue Aug 3 12:52:36 2021 +0200

    SftpOperations.java, spelling fix Strick -> Strict (#5913)
---
 .../java/org/apache/camel/component/file/remote/SftpOperations.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpOperations.java b/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpOperations.java
index 869c390..ba31d31 100644
--- a/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpOperations.java
+++ b/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpOperations.java
@@ -299,7 +299,7 @@ public class SftpOperations implements RemoteFileOperations<SftpRemoteFile> {
         final Session session = jsch.getSession(configuration.getUsername(), configuration.getHost(), configuration.getPort());
 
         if (isNotEmpty(sftpConfig.getStrictHostKeyChecking())) {
-            LOG.debug("Using StrickHostKeyChecking: {}", sftpConfig.getStrictHostKeyChecking());
+            LOG.debug("Using StrictHostKeyChecking: {}", sftpConfig.getStrictHostKeyChecking());
             session.setConfig("StrictHostKeyChecking", sftpConfig.getStrictHostKeyChecking());
         }