mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
volume: file counter should be all files
address https://github.com/seaweedfs/seaweedfs/pull/3388#issuecomment-1220466228
This commit is contained in:
parent
f7e0a65e75
commit
c7892bc7c4
|
@ -105,9 +105,8 @@ func newNeedleMapMetricFromIndexFile(r *os.File) (mm *mapMetric, err error) {
|
|||
mm.FileByteCounter += uint64(size)
|
||||
}
|
||||
|
||||
if !bf.TestAndAdd(buf) {
|
||||
mm.FileCounter++
|
||||
} else {
|
||||
mm.FileCounter++
|
||||
if bf.TestAndAdd(buf) {
|
||||
// deleted file
|
||||
mm.DeletionCounter++
|
||||
if size.IsValid() {
|
||||
|
|
Loading…
Reference in a new issue