Home
last modified time | relevance | path

Searched refs:CLUSTER_NODE_NOFAILOVER (Results 1 – 3 of 3) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dcluster.h59 #define CLUSTER_NODE_NOFAILOVER 512 /* Slave will not try to failver. */ macro
69 #define nodeCantFailover(n) ((n)->flags & CLUSTER_NODE_NOFAILOVER)
H A Dcluster.c206 n->flags |= CLUSTER_NODE_NOFAILOVER; in clusterLoadConfig()
420 CLUSTER_NODE_NOFAILOVER : 0; in clusterUpdateMyselfFlags()
421 myself->flags &= ~CLUSTER_NODE_NOFAILOVER; in clusterUpdateMyselfFlags()
1849 int nofailover = flags & CLUSTER_NODE_NOFAILOVER; in clusterProcessPacket()
1850 sender->flags &= ~CLUSTER_NODE_NOFAILOVER; in clusterProcessPacket()
3967 {CLUSTER_NODE_NOFAILOVER, "nofailover,"}
H A Dmodule.c4238 if (node->flags & CLUSTER_NODE_NOFAILOVER) *flags |= REDISMODULE_NODE_NOFAILOVER; in RM_GetClusterNodeInfo()