From b045e787f5d794756172d0eb58bdd24752e6361e Mon Sep 17 00:00:00 2001 From: Binbin Date: Mon, 17 Jun 2024 11:51:55 +0800 Subject: [PATCH] fix format Signed-off-by: Binbin --- src/cluster_legacy.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/cluster_legacy.c b/src/cluster_legacy.c index 4014c6850b..f0d2aaa374 100644 --- a/src/cluster_legacy.c +++ b/src/cluster_legacy.c @@ -1755,9 +1755,8 @@ void clusterHandleConfigEpochCollision(clusterNode *sender) { server.cluster->currentEpoch++; myself->configEpoch = server.cluster->currentEpoch; clusterSaveConfigOrDie(1); - serverLog(LL_NOTICE, - "configEpoch collision with node %.40s (%s). configEpoch set to %llu", - sender->name, sender->human_nodename, (unsigned long long)myself->configEpoch); + serverLog(LL_NOTICE, "configEpoch collision with node %.40s (%s). configEpoch set to %llu", sender->name, + sender->human_nodename, (unsigned long long)myself->configEpoch); } /* -----------------------------------------------------------------------------