mirror of https://github.com/restic/restic.git
Merge pull request #1824 from rfjakob/ssh_command_exited
sftp: persist "ssh command exited" error
This commit is contained in:
commit
0fcd9d6926
|
@ -75,7 +75,9 @@ func startClient(program string, args ...string) (*SFTP, error) {
|
|||
go func() {
|
||||
err := cmd.Wait()
|
||||
debug.Log("ssh command exited, err %v", err)
|
||||
ch <- errors.Wrap(err, "cmd.Wait")
|
||||
for {
|
||||
ch <- errors.Wrap(err, "ssh command exited")
|
||||
}
|
||||
}()
|
||||
|
||||
// open the SFTP session
|
||||
|
|
Loading…
Reference in New Issue