From b0a582807dca40889c9ea05e5e5623c97b705b18 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 c4f906394b5e..dba0ea7139bf 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