From c59a7f7e8e3858699ac0fc809a085723741163d6 Mon Sep 17 00:00:00 2001 From: Jacob Murphy Date: Mon, 20 Jan 2025 09:42:49 +0000 Subject: [PATCH] Fix implicit fallthrough Signed-off-by: Jacob Murphy --- src/cluster_legacy.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cluster_legacy.c b/src/cluster_legacy.c index 8ca61e5b1a..ddb25663a0 100644 --- a/src/cluster_legacy.c +++ b/src/cluster_legacy.c @@ -4635,6 +4635,7 @@ void clusterProceedWithSlotImport(void) { * straight to readQueryFromClient. */ connSetReadHandler(curr_import->client->conn, readQueryFromClient); curr_import->state = SLOT_IMPORT_RECEIVE_SYNCSLOTS; + continue; case SLOT_IMPORT_RECEIVE_SYNCSLOTS: /* Nothing to do in this state. Waiting for CLUSTER SYNCSLOTS ENDSNAPSHOT to be processed. */ return;