From 5dffb30ed2fbfd71bb48ca6224ec4e1d0ad26896 Mon Sep 17 00:00:00 2001 From: Roman Tsisyk <roman@tsisyk.com> Date: Thu, 15 Oct 2015 15:11:39 +0300 Subject: [PATCH] Increase the maximal number of replicas to 32 Requested by customer. --- src/box/vclock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/box/vclock.h b/src/box/vclock.h index ce35b2ab74..ccd8bf8b04 100644 --- a/src/box/vclock.h +++ b/src/box/vclock.h @@ -46,7 +46,7 @@ extern "C" { #endif /* defined(__cplusplus) */ -enum { VCLOCK_MAX = 16 }; +enum { VCLOCK_MAX = 32 }; /** Cluster vector clock */ struct vclock { -- GitLab