From 0c8f22e72377c8ad46a54752f8afe018442979a6 Mon Sep 17 00:00:00 2001 From: Ben Totten Date: Fri, 12 Jul 2024 16:07:25 +0000 Subject: [PATCH] Fix lingering whitespace issue Signed-off-by: Ben Totten --- src/cluster_legacy.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cluster_legacy.c b/src/cluster_legacy.c index 9dbf9180d3..4c68d9fe73 100644 --- a/src/cluster_legacy.c +++ b/src/cluster_legacy.c @@ -2996,8 +2996,8 @@ int clusterProcessPacket(clusterLink *link) { /* Add this node if it is new for us and the msg type is MEET. * In this stage we don't try to add the node with the right * flags, replicaof pointer, and so forth, as this details will be - * resolved when we'll receive PONGs from the node. The exception - * to this is the flag that indicates extensions are supported, as + * resolved when we'll receive PONGs from the node. The exception + * to this is the flag that indicates extensions are supported, as * we want to send extensions right away in the return PONG in order * to reduce the amount of time needed to stabilize the shard ID. */ if (!sender && type == CLUSTERMSG_TYPE_MEET) { @@ -3009,7 +3009,7 @@ int clusterProcessPacket(clusterLink *link) { node->cport = ntohs(hdr->cport); if (hdr->mflags[0] & CLUSTERMSG_FLAG0_EXT_DATA) { node->flags |= CLUSTER_NODE_EXTENSIONS_SUPPORTED; - } + } clusterAddNode(node); clusterDoBeforeSleep(CLUSTER_TODO_SAVE_CONFIG); }