forked from TrueCloudLab/restic
Mark "ssh exited" errors in SFTP as permanent
This commit is contained in:
parent
f7784bddb3
commit
746dbda413
1 changed files with 2 additions and 1 deletions
|
@ -16,6 +16,7 @@ import (
|
||||||
"github.com/restic/restic/internal/backend"
|
"github.com/restic/restic/internal/backend"
|
||||||
"github.com/restic/restic/internal/debug"
|
"github.com/restic/restic/internal/debug"
|
||||||
|
|
||||||
|
"github.com/cenkalti/backoff/v4"
|
||||||
"github.com/pkg/sftp"
|
"github.com/pkg/sftp"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -99,7 +100,7 @@ func (r *SFTP) clientError() error {
|
||||||
select {
|
select {
|
||||||
case err := <-r.result:
|
case err := <-r.result:
|
||||||
debug.Log("client has exited with err %v", err)
|
debug.Log("client has exited with err %v", err)
|
||||||
return err
|
return backoff.Permanent(err)
|
||||||
default:
|
default:
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue