mirror of
https://github.com/rclone/rclone.git
synced 2024-11-26 10:13:52 +08:00
operations: make reopen code error on NoLowLevelRetry errors - fixes #3777
This commit is contained in:
parent
684dbe0e9d
commit
4537d9b5cf
|
@ -7,6 +7,7 @@ import (
|
|||
|
||||
"github.com/pkg/errors"
|
||||
"github.com/rclone/rclone/fs"
|
||||
"github.com/rclone/rclone/fs/fserrors"
|
||||
)
|
||||
|
||||
// reOpen is a wrapper for an object reader which reopens the stream on error
|
||||
|
@ -104,7 +105,7 @@ func (h *reOpen) Read(p []byte) (n int, err error) {
|
|||
h.err = err
|
||||
}
|
||||
h.read += int64(n)
|
||||
if err != nil && err != io.EOF {
|
||||
if err != nil && err != io.EOF && !fserrors.IsNoLowLevelRetryError(err) {
|
||||
// close underlying stream
|
||||
h.opened = false
|
||||
_ = h.rc.Close()
|
||||
|
|
Loading…
Reference in New Issue
Block a user