@cryptotaxi247 / kubo / commits / d50960f9e

go-ipfs-config: chore: omitempty Experimental.ShardingEnabled (#158)

We switch to autosharding setup in https://github.com/ipfs/go-ipfs/pull/8527

Marcin Rataj committed Nov 23, 2021 at 18:44 UTC d50960f9e3d9d3c21e48f1000dff9a64ad2a7ea2
1 file changed +1 -1
config/experiments.go
+1 -1
@@ -3,7 +3,7 @@ package config
3 type Experiments struct {
4 FilestoreEnabled bool
5 UrlstoreEnabled bool
6 - ShardingEnabled bool
6 + ShardingEnabled bool `json:",omitempty"` // deprecated by autosharding: https://github.com/ipfs/go-ipfs/pull/8527
7 GraphsyncEnabled bool
8 Libp2pStreamMounting bool
9 P2pHttpProxy bool