From f4e2a9359ceadd6b6ae8259bc4c3bf4b96ed46d5 Mon Sep 17 00:00:00 2001 From: Kingdon Barrett Date: Thu, 30 Dec 2021 16:05:09 -0500 Subject: [PATCH] tests pass tests are all passing now (including this one) --- pkg/sshd/server_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/sshd/server_test.go b/pkg/sshd/server_test.go index f40b178..697fcec 100644 --- a/pkg/sshd/server_test.go +++ b/pkg/sshd/server_test.go @@ -43,6 +43,7 @@ func clientConfig() *ssh.ClientConfig { Auth: []ssh.AuthMethod{ ssh.Password("password"), }, + HostKeyCallback: ssh.InsecureIgnoreHostKey(), } }