Skip to content

Commit

Permalink
Fix ssh (#17)
Browse files Browse the repository at this point in the history
* local/ssh: Fix ssh bug

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.
  • Loading branch information
doodles526 authored and mbyczkowski committed Oct 4, 2017
1 parent 57a969b commit ff7bd22
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Removed

### Fixed
* Complies breaking ssh behavior changes from https://github.com/golang/go/issues/19767

## [0.5.35] - 2017-06-15
### Added
Expand Down
3 changes: 2 additions & 1 deletion local/ssh_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
}

// SSH into wormhole server
Expand Down

0 comments on commit ff7bd22

Please sign in to comment.