Skip to content
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

Merged
merged 2 commits into from
Oct 4, 2017
Merged

Fix ssh #17

merged 2 commits into from
Oct 4, 2017

Conversation

doodles526
Copy link
Contributor

@doodles526 doodles526 commented Oct 4, 2017

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

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
@doodles526 doodles526 requested a review from mbyczkowski October 4, 2017 19:36
Copy link
Contributor

@mbyczkowski mbyczkowski left a 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
Copy link
Contributor

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?

Copy link
Contributor Author

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

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed here 132aa9b

Copy link
Contributor Author

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(),
Copy link
Contributor

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 👍

@doodles526
Copy link
Contributor Author

@mbyczkowski Back at ya! Should be ready to go

@mbyczkowski mbyczkowski merged commit ff7bd22 into superfly:master Oct 4, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants