forked from TrueCloudLab/restic
Merge pull request #3327 from MichaelEischer/fix-s3-sanity-check
s3: Fix sanity check
This commit is contained in:
commit
88a23521dd
1 changed files with 1 additions and 1 deletions
|
@ -277,7 +277,7 @@ func (be *Backend) Save(ctx context.Context, h restic.Handle, rd restic.RewindRe
|
|||
debug.Log("%v -> %v bytes, err %#v: %v", objName, info.Size, err, err)
|
||||
|
||||
// sanity check
|
||||
if err != nil && info.Size != rd.Length() {
|
||||
if err == nil && info.Size != rd.Length() {
|
||||
return errors.Errorf("wrote %d bytes instead of the expected %d bytes", info.Size, rd.Length())
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue