temporarily disable reification

big reifications can use a lot of memory during sync apparently.
This commit is contained in:
vyzo 2022-02-17 19:56:50 +02:00
parent 72021b3221
commit a20c6cb04b

View File

@ -10,7 +10,13 @@ import (
cid "github.com/ipfs/go-cid"
)
var EnableReification = false
func (s *SplitStore) reifyColdObject(c cid.Cid) {
if !EnableReification {
return
}
if !s.isWarm() {
return
}