From 493cafc62a9df49eab73ce86e6244e0fff8f045e Mon Sep 17 00:00:00 2001 From: Alejandro Lopez Date: Wed, 17 May 2023 15:17:35 +0300 Subject: [PATCH] [#355] Increase tree svc client cache size to test hypotheses Signed-off-by: Alejandro Lopez --- pkg/services/tree/cache.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/services/tree/cache.go b/pkg/services/tree/cache.go index 56b97e68..3288083c 100644 --- a/pkg/services/tree/cache.go +++ b/pkg/services/tree/cache.go @@ -27,7 +27,7 @@ type cacheItem struct { } const ( - defaultClientCacheSize = 10 + defaultClientCacheSize = 32 defaultClientConnectTimeout = time.Second * 2 defaultReconnectInterval = time.Second * 15 )