From c3e01cbf9e84f9ac89d313a4dad7171b84d4f9b1 Mon Sep 17 00:00:00 2001 From: John Sully Date: Thu, 23 Sep 2021 00:15:47 +0000 Subject: [PATCH] Clients should initialize with an mvcc checkpoint Former-commit-id: 5183cb721774be1b769d130359e4bddb1eb8224b --- src/networking.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/networking.cpp b/src/networking.cpp index b25eeaf71..b1ee4a9a8 100644 --- a/src/networking.cpp +++ b/src/networking.cpp @@ -200,7 +200,7 @@ client *createClient(connection *conn, int iel) { c->paused_list_node = NULL; c->client_tracking_redirection = 0; c->casyncOpsPending = 0; - c->mvccCheckpoint = 0; + c->mvccCheckpoint = getMvccTstamp(); c->master_error = 0; memset(c->uuid, 0, UUID_BINARY_LEN);