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

acosentino 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 8dedd84db46 Camel-Jsch: Set the strictHostChecking parameter really to 
"no" as default value
8dedd84db46 is described below

commit 8dedd84db46d5ccb279193770d99c6bd02ded120
Author: Andrea Cosentino <[email protected]>
AuthorDate: Wed May 18 11:51:51 2022 +0200

    Camel-Jsch: Set the strictHostChecking parameter really to "no" as default 
value
---
 .../src/main/java/org/apache/camel/component/scp/ScpConfiguration.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/components/camel-jsch/src/main/java/org/apache/camel/component/scp/ScpConfiguration.java
 
b/components/camel-jsch/src/main/java/org/apache/camel/component/scp/ScpConfiguration.java
index f1ef8d3252c..10164465204 100644
--- 
a/components/camel-jsch/src/main/java/org/apache/camel/component/scp/ScpConfiguration.java
+++ 
b/components/camel-jsch/src/main/java/org/apache/camel/component/scp/ScpConfiguration.java
@@ -41,7 +41,7 @@ public class ScpConfiguration extends RemoteFileConfiguration 
{
     @UriParam(label = "security", secret = true)
     private String privateKeyFilePassphrase;
     @UriParam(enums = "no,yes", defaultValue = "no")
-    private String strictHostKeyChecking;
+    private String strictHostKeyChecking = "no";
     @UriParam(defaultValue = DEFAULT_MOD)
     private String chmod = DEFAULT_MOD;
     // comma separated list of ciphers. 

Reply via email to