volume: skip readonly checking when Destroy()
fix https://github.com/chrislusf/seaweedfs/issues/1063
This commit is contained in:
@@ -40,10 +40,6 @@ func (v *Volume) isFileUnchanged(n *needle.Needle) bool {
|
|||||||
|
|
||||||
// Destroy removes everything related to this volume
|
// Destroy removes everything related to this volume
|
||||||
func (v *Volume) Destroy() (err error) {
|
func (v *Volume) Destroy() (err error) {
|
||||||
if v.readOnly {
|
|
||||||
err = fmt.Errorf("%s is read-only", v.dataFile.Name())
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if v.isCompacting {
|
if v.isCompacting {
|
||||||
err = fmt.Errorf("volume %d is compacting", v.Id)
|
err = fmt.Errorf("volume %d is compacting", v.Id)
|
||||||
return
|
return
|
||||||
|
|||||||
Reference in New Issue
Block a user