From c5fd146ac45f395331c73e0a68257a3e0c290985 Mon Sep 17 00:00:00 2001 From: Artur Troian Date: Tue, 19 Mar 2024 10:13:55 +0100 Subject: [PATCH] chore(go/client): allow up to 4 volumes per service replica Signed-off-by: Artur Troian --- go/node/types/constants/constants.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/node/types/constants/constants.go b/go/node/types/constants/constants.go index ac28aae8..ef99ff5b 100644 --- a/go/node/types/constants/constants.go +++ b/go/node/types/constants/constants.go @@ -1,5 +1,5 @@ package constants const ( - DefaultMaxGroupVolumes = 2 + DefaultMaxGroupVolumes = 4 )