mirror of
https://github.com/fluencelabs/redis
synced 2025-04-01 15:21:03 +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. */
|
/* 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;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user