mirror of
https://github.com/fluencelabs/redis
synced 2025-03-18 16:40:50 +00:00
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:
parent
b804afcf01
commit
9cf30132cc
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user