| 3569 | } |
| 3570 | |
| 3571 | static int clusterManagerBumpEpoch(clusterManagerNode *node) { |
| 3572 | redisReply *reply = CLUSTER_MANAGER_COMMAND(node, "CLUSTER BUMPEPOCH"); |
| 3573 | int success = clusterManagerCheckRedisReply(node, reply, NULL); |
| 3574 | if (reply) freeReplyObject(reply); |
| 3575 | return success; |
| 3576 | } |
| 3577 | |
| 3578 | /* Callback used by clusterManagerSetSlotOwner transaction. It should ignore |
| 3579 | * errors except for ADDSLOTS errors. |
no test coverage detected