fix(files): add work around for calculating the used space

This commit is contained in:
hexxa 2022-03-04 10:47:00 +08:00 committed by Hexxa
parent e5728aa96c
commit 693886f988
3 changed files with 84 additions and 3 deletions

View file

@ -432,3 +432,7 @@ func (bp *BoltPvd) ListStringsByPrefixIn(prefix, ns string) (map[string]string,
return results, err
}
func (bp *BoltPvd) StartUpdateTxBolt(op func(*bolt.Tx) error) error {
return bp.db.Update(op)
}