From d50960f9e3d9d3c21e48f1000dff9a64ad2a7ea2 Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Tue, 23 Nov 2021 18:44:35 +0100 Subject: [PATCH] go-ipfs-config: chore: omitempty Experimental.ShardingEnabled (#158) We switch to autosharding setup in https://github.com/ipfs/go-ipfs/pull/8527 --- config/experiments.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/experiments.go b/config/experiments.go index c4f906394b5..dba0ea7139b 100644 --- a/config/experiments.go +++ b/config/experiments.go @@ -3,7 +3,7 @@ package config type Experiments struct { FilestoreEnabled bool UrlstoreEnabled bool - ShardingEnabled bool + ShardingEnabled bool `json:",omitempty"` // deprecated by autosharding: https://github.com/ipfs/go-ipfs/pull/8527 GraphsyncEnabled bool Libp2pStreamMounting bool P2pHttpProxy bool