From 7311cd5a176300a6bfaae50343f216e0c450cdcb Mon Sep 17 00:00:00 2001 From: Boris Stepanenko Date: Mon, 23 Jan 2023 13:24:40 +0300 Subject: [PATCH] get_cluster_vclock: delete zero vclock component Zero vclock component is used for local transactions and is meaningless for cluster as a whole. --- test_run.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/test_run.lua b/test_run.lua index 28ccb261..60014984 100644 --- a/test_run.lua +++ b/test_run.lua @@ -224,6 +224,7 @@ local function get_cluster_vclock(self, servers) end end end + vclock[0] = nil return setmetatable(vclock, { __serialize = 'map' }) end