mirror of
https://github.com/restic/restic.git
synced 2024-12-22 07:43:03 +00:00
Merge pull request #1824 from rfjakob/ssh_command_exited
sftp: persist "ssh command exited" error
This commit is contained in:
commit
0fcd9d6926
1 changed files with 3 additions and 1 deletions
|
@ -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 a new issue