You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 11, 2020. It is now read-only.
Due to this breaking change any operation which uses ssh is destined to fail with this error ssh: must specify HostKeyCallback.
The fix to restore functionality as before is to add HostKeyCallback: ssh.InsecureIgnoreHostKey(), to all instances of ssh.ClientConfig in plumbing/transport/ssh/auth_method.go.
It would also be cool if there was a way to specify the callback directly, perhaps by providing a way to specify ssh.ClientConfig directly?
This affect all projects that aren't vendoring dependencies and download the latest version of x/crypto/ssh.
If you would like me to submit the fix as a PR just say the word.
The text was updated successfully, but these errors were encountered:
Due to this breaking change any operation which uses ssh is destined to fail with this error
ssh: must specify HostKeyCallback
.The fix to restore functionality as before is to add
HostKeyCallback: ssh.InsecureIgnoreHostKey(),
to all instances ofssh.ClientConfig
inplumbing/transport/ssh/auth_method.go
.It would also be cool if there was a way to specify the callback directly, perhaps by providing a way to specify
ssh.ClientConfig
directly?This affect all projects that aren't vendoring dependencies and download the latest version of
x/crypto/ssh
.If you would like me to submit the fix as a PR just say the word.
The text was updated successfully, but these errors were encountered: