mirror of
https://github.com/restic/restic.git
synced 2025-08-11 12:37:47 +00:00
Mark "ssh exited" errors in SFTP as permanent
This commit is contained in:
@@ -16,6 +16,7 @@ import (
|
||||
"github.com/restic/restic/internal/backend"
|
||||
"github.com/restic/restic/internal/debug"
|
||||
|
||||
"github.com/cenkalti/backoff/v4"
|
||||
"github.com/pkg/sftp"
|
||||
)
|
||||
|
||||
@@ -99,7 +100,7 @@ func (r *SFTP) clientError() error {
|
||||
select {
|
||||
case err := <-r.result:
|
||||
debug.Log("client has exited with err %v", err)
|
||||
return err
|
||||
return backoff.Permanent(err)
|
||||
default:
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user