Redis 2.6 branch obtained from unstable removing all the cluster related code.

This commit is contained in:
antirez
2012-03-10 12:26:37 +01:00
parent 87faf90696
commit 571e257db1
8 changed files with 193 additions and 2015 deletions

View File

@ -263,6 +263,5 @@ void punsubscribeCommand(redisClient *c) {
void publishCommand(redisClient *c) {
int receivers = pubsubPublishMessage(c->argv[1],c->argv[2]);
if (server.cluster_enabled) clusterPropagatePublish(c->argv[1],c->argv[2]);
addReplyLongLong(c,receivers);
}