mirror of
https://github.com/fluencelabs/redis
synced 2025-04-03 00:01:04 +00:00
Cluster: check link is valid before sending UPDATE.
This commit is contained in:
parent
f57bb36ce7
commit
fda91dbde3
@ -1691,6 +1691,7 @@ void clusterSendUpdate(clusterLink *link, clusterNode *node) {
|
|||||||
unsigned char buf[sizeof(clusterMsg)];
|
unsigned char buf[sizeof(clusterMsg)];
|
||||||
clusterMsg *hdr = (clusterMsg*) buf;
|
clusterMsg *hdr = (clusterMsg*) buf;
|
||||||
|
|
||||||
|
if (link == NULL) return;
|
||||||
clusterBuildMessageHdr(hdr,CLUSTERMSG_TYPE_UPDATE);
|
clusterBuildMessageHdr(hdr,CLUSTERMSG_TYPE_UPDATE);
|
||||||
memcpy(hdr->data.update.nodecfg.nodename,node->name,REDIS_CLUSTER_NAMELEN);
|
memcpy(hdr->data.update.nodecfg.nodename,node->name,REDIS_CLUSTER_NAMELEN);
|
||||||
hdr->data.update.nodecfg.configEpoch = htonu64(node->configEpoch);
|
hdr->data.update.nodecfg.configEpoch = htonu64(node->configEpoch);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user