From 06ba8409c178b53839e5580b8a80fda0bc97bf5a Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Thu, 12 Mar 2020 11:12:21 +0000 Subject: [PATCH] target/descriptor: Make `strict_host_check` default to `False` The majority of users will not find a benefit of the additional check so make this parameter default to `False` instead. --- wa/framework/target/descriptor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wa/framework/target/descriptor.py b/wa/framework/target/descriptor.py index 0b5eb4dd..1da117d2 100644 --- a/wa/framework/target/descriptor.py +++ b/wa/framework/target/descriptor.py @@ -333,7 +333,7 @@ CONNECTION_PARAMS = { The port SSH server is listening on on the target. """), Parameter( - 'strict_host_check', kind=bool, default=True, + 'strict_host_check', kind=bool, default=False, description=""" Specify whether devices should be connected to if their host key does not match the systems known host keys. """),