From 47fbca38f60c29251fa540a8ba13513376d149f2 Mon Sep 17 00:00:00 2001 From: Max Wash Date: Thu, 27 Feb 2025 15:50:57 +0000 Subject: [PATCH] cluster-cache: fix init function setting memcache count instead of memcache max --- src/cluster-cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cluster-cache.c b/src/cluster-cache.c index e7122ab..25cdea7 100644 --- a/src/cluster-cache.c +++ b/src/cluster-cache.c @@ -44,7 +44,7 @@ enum ec3_status cluster_cache_init( } } - out->c_memcache_count = 4; + out->c_memcache_max = 4; out->c_cluster_size = cluster_size; return EC3_SUCCESS; }