1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-05-29 23:00:36 +02:00

volume: deletion can skip volume size checking

fix https://github.com/chrislusf/seaweedfs/issues/2225
This commit is contained in:
Chris Lu 2021-08-01 00:32:51 -07:00
parent 6ba65c3382
commit 9cc84a910f

View file

@ -147,7 +147,7 @@ func (n *Needle) Append(w backend.BackendStorageFile, version Version) (offset u
err = fmt.Errorf("Cannot Read Current Volume Position: %v", e)
return
}
if offset >= MaxPossibleVolumeSize {
if offset >= MaxPossibleVolumeSize && n.Size.IsValid() {
err = fmt.Errorf("Volume Size %d Exeededs %d", offset, MaxPossibleVolumeSize)
return
}