From 3eec13c4e08e26f9cd76834c912a59cf80051c9a Mon Sep 17 00:00:00 2001 From: Jacob Murphy Date: Wed, 22 Jan 2025 00:57:41 +0000 Subject: [PATCH] Log line fix Signed-off-by: Jacob Murphy --- src/cluster_legacy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cluster_legacy.c b/src/cluster_legacy.c index 024394659f..04a1359649 100644 --- a/src/cluster_legacy.c +++ b/src/cluster_legacy.c @@ -4695,7 +4695,7 @@ void clusterProceedWithSlotImport(void) { clusterUpdateState(); clusterSaveConfigOrDie(1); if (clusterBumpConfigEpochWithoutConsensus() == C_OK) { - serverLog(LL_NOTICE, "Epoch bumped after importing slots. New epoch %ld", server.cluster->currentEpoch); + serverLog(LL_NOTICE, "Epoch bumped after importing slots. New epoch %llu", server.cluster->currentEpoch); } clusterFreeSlotImportJob(curr_import); clusterBroadcastPong(CLUSTER_BROADCAST_ALL);