From: antirez Date: Mon, 19 Mar 2012 18:16:41 +0000 (+0100) Subject: Read-only flag removed from PUBLISH command. X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/6e6bbac7a5ebc24ff7bf5913b4b8b49433b8e303?hp=-c Read-only flag removed from PUBLISH command. --- 6e6bbac7a5ebc24ff7bf5913b4b8b49433b8e303 diff --git a/src/redis.c b/src/redis.c index eb19fbbf..0b5d672b 100644 --- a/src/redis.c +++ b/src/redis.c @@ -229,7 +229,7 @@ struct redisCommand redisCommandTable[] = { {"unsubscribe",unsubscribeCommand,-1,"rps",0,NULL,0,0,0,0,0}, {"psubscribe",psubscribeCommand,-2,"rps",0,NULL,0,0,0,0,0}, {"punsubscribe",punsubscribeCommand,-1,"rps",0,NULL,0,0,0,0,0}, - {"publish",publishCommand,3,"rpf",0,NULL,0,0,0,0,0}, + {"publish",publishCommand,3,"pf",0,NULL,0,0,0,0,0}, {"watch",watchCommand,-2,"rs",0,noPreloadGetKeys,1,-1,1,0,0}, {"unwatch",unwatchCommand,1,"rs",0,NULL,0,0,0,0,0}, {"restore",restoreCommand,4,"awm",0,NULL,1,1,1,0,0},