temporarily disable reification
big reifications can use a lot of memory during sync apparently.
This commit is contained in:
parent
72021b3221
commit
a20c6cb04b
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user