From 02cc71f6d6d681fba83fa78c9c6f949f41502388 Mon Sep 17 00:00:00 2001 From: Hector Sanjuan Date: Tue, 10 Dec 2024 11:40:40 +0100 Subject: [PATCH] config: omitempty on BlockKeyCacheSize --- config/datastore.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/datastore.go b/config/datastore.go index c9db2017e80..a3478215996 100644 --- a/config/datastore.go +++ b/config/datastore.go @@ -36,7 +36,7 @@ type Datastore struct { HashOnRead bool BloomFilterSize int - BlockKeyCacheSize OptionalInteger + BlockKeyCacheSize OptionalInteger `json:",omitempty"` WriteThrough bool }