aboutsummaryrefslogtreecommitdiff
path: root/weed/storage/volume.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/storage/volume.go')
-rw-r--r--weed/storage/volume.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/storage/volume.go b/weed/storage/volume.go
index 066f06604..79b0059d6 100644
--- a/weed/storage/volume.go
+++ b/weed/storage/volume.go
@@ -333,6 +333,6 @@ func (v *Volume) IsReadOnly() bool {
return v.noWriteOrDelete || v.noWriteCanDelete || v.location.isDiskSpaceLow
}
func (v *Volume) IsEmpty() bool {
- size, _, _ := v.DataBackend.GetStat()
- return size <= 8 && v.ContentSize() == 0
+ datSize, _, _ := v.FileStat()
+ return datSize <= super_block.SuperBlockSize && v.ContentSize() == 0
}