1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-02 15:16:51 +02:00

volume: skip readonly checking when Destroy()

fix https://github.com/chrislusf/seaweedfs/issues/1063
This commit is contained in:
Chris Lu 2019-09-11 09:45:09 -07:00
parent 02710f9624
commit 5e9c65469e

View file

@ -40,10 +40,6 @@ func (v *Volume) isFileUnchanged(n *needle.Needle) bool {
// Destroy removes everything related to this volume
func (v *Volume) Destroy() (err error) {
if v.readOnly {
err = fmt.Errorf("%s is read-only", v.dataFile.Name())
return
}
if v.isCompacting {
err = fmt.Errorf("volume %d is compacting", v.Id)
return