Commit 9cf30132 authored by antirez's avatar antirez
Browse files

Cluster: process MEET packets as PING packets.

Somewhat a previous commit broken this so CLUSTER MEET was no longer
working.
parent b804afcf
...@@ -887,7 +887,9 @@ int clusterProcessPacket(clusterLink *link) { ...@@ -887,7 +887,9 @@ int clusterProcessPacket(clusterLink *link) {
} }
/* PING or PONG: process config information. */ /* 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_state = 0;
int update_config = 0; int update_config = 0;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment