From 9cf30132cc8972b59ca2e8f01325a99ba0a915b0 Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 22 Aug 2013 11:53:28 +0200 Subject: [PATCH] Cluster: process MEET packets as PING packets. Somewhat a previous commit broken this so CLUSTER MEET was no longer working. --- src/cluster.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/cluster.c b/src/cluster.c index 2c813f58..c4a68f87 100644 --- a/src/cluster.c +++ b/src/cluster.c @@ -887,7 +887,9 @@ int clusterProcessPacket(clusterLink *link) { } /* PING or PONG: process config information. */ - if (type == CLUSTERMSG_TYPE_PING || type == CLUSTERMSG_TYPE_PONG) { + if (type == CLUSTERMSG_TYPE_PING || type == CLUSTERMSG_TYPE_PONG || + type == CLUSTERMSG_TYPE_MEET) + { int update_state = 0; int update_config = 0;