X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/e4f6b8c327eb8e1444b51ced96e59dc5e7294cf8..71a50956b1ff6b45b8265afa8e7e0264c465cec8:/src/pubsub.c diff --git a/src/pubsub.c b/src/pubsub.c index 728e559c..af37df5c 100644 --- a/src/pubsub.c +++ b/src/pubsub.c @@ -63,10 +63,10 @@ int pubsubUnsubscribeChannel(redisClient *c, robj *channel, int notify) { retval = 1; /* Remove the client from the channel -> clients list hash table */ de = dictFind(server.pubsub_channels,channel); - redisAssert(de != NULL); + redisAssertWithInfo(c,NULL,de != NULL); clients = dictGetEntryVal(de); ln = listSearchKey(clients,c); - redisAssert(ln != NULL); + redisAssertWithInfo(c,NULL,ln != NULL); listDelNode(clients,ln); if (listLength(clients) == 0) { /* Free the list and associated hash entry at all if this was @@ -263,5 +263,6 @@ 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); }