gofmt using v1.11.2 instead of disro's outdated v1.10.5.

This commit is contained in:
Ali Rizvi-Santiago 2018-12-02 19:42:34 -06:00
parent 040a33567e
commit b0af406e08
1 changed files with 3 additions and 3 deletions

View File

@ -177,9 +177,9 @@ func (s *StepConnectSSH) waitForSSH(state multistep.StateBag, cancel <-chan stru
// Then we attempt to connect via SSH
config := &ssh.Config{
Connection: connFunc,
SSHConfig: sshConfig,
Pty: s.Config.SSHPty,
Connection: connFunc,
SSHConfig: sshConfig,
Pty: s.Config.SSHPty,
DisableAgentForwarding: s.Config.SSHDisableAgentForwarding,
UseSftp: s.Config.SSHFileTransferMethod == "sftp",
KeepAliveInterval: s.Config.SSHKeepAliveInterval,