Skip to content

Commit

Permalink
Cluster: process MEET packets as PING packets.
Browse files Browse the repository at this point in the history
Somewhat a previous commit broken this so CLUSTER MEET was no longer
working.
  • Loading branch information
antirez committed Aug 22, 2013
1 parent b804afc commit 9cf3013
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/cluster.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 9cf3013

Please sign in to comment.