Cluster: process MEET packets as PING packets.

Somewhat a previous commit broken this so CLUSTER MEET was no longer
working.
This commit is contained in:
antirez 2013-08-22 11:53:28 +02:00
parent b804afcf01
commit 9cf30132cc

View File

@ -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;