| 3180 | } |
| 3181 | |
| 3182 | static int clusterManagerBumpEpoch(clusterManagerNode *node) { |
| 3183 | redisReply *reply = CLUSTER_MANAGER_COMMAND(node, "CLUSTER BUMPEPOCH"); |
| 3184 | int success = clusterManagerCheckRedisReply(node, reply, NULL); |
| 3185 | if (reply) freeReplyObject(reply); |
| 3186 | return success; |
| 3187 | } |
| 3188 | |
| 3189 | /* Callback used by clusterManagerSetSlotOwner transaction. It should ignore |
| 3190 | * errors except for ADDSLOTS errors. |
no test coverage detected