-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix ssh #17
Fix ssh #17
Conversation
In accordance to golang/go#19767 we are having wildcard host to fix the issue. We will change to proper host verification in the future
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just a changelog comment nitpick, other than that 👍
CHANGELOG.md
Outdated
@@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). | |||
### Removed | |||
|
|||
### Fixed | |||
* Complies with bug introduces from https://github.com/golang/go/issues/19767 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Complies with ssh behavior change in ...
maybe?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm. Yeah I agree. Will change
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed here 132aa9b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Err b7c3acd
@@ -118,7 +118,8 @@ func (s *SSHHandler) dial() (*ssh.Client, net.Listener, error) { | |||
Auth: []ssh.AuthMethod{ | |||
ssh.Password(s.FlyToken), | |||
}, | |||
Timeout: sshConnTimeout, | |||
Timeout: sshConnTimeout, | |||
HostKeyCallback: ssh.InsecureIgnoreHostKey(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that should do for now 👍
@mbyczkowski Back at ya! Should be ready to go |
Pull Request Checklist
Is this in reference to an existing issue?
Yes, golang/go#19767
General
Update Changelog following the conventions laid out on Keep A Changelog
Update README with any necessary configuration snippets
Existing tests pass
Purpose