Commit d695f3e8 authored by antirez's avatar antirez
Browse files

Fix NOTIFY macro names after cherry pick of fix.

parent 593cf598
...@@ -680,12 +680,12 @@ void lremCommand(redisClient *c) { ...@@ -680,12 +680,12 @@ void lremCommand(redisClient *c) {
if (removed) { if (removed) {
signalModifiedKey(c->db,c->argv[1]); signalModifiedKey(c->db,c->argv[1]);
notifyKeyspaceEvent(NOTIFY_GENERIC,"lrem",c->argv[1],c->db->id); notifyKeyspaceEvent(REDIS_NOTIFY_GENERIC,"lrem",c->argv[1],c->db->id);
} }
if (listTypeLength(subject) == 0) { if (listTypeLength(subject) == 0) {
dbDelete(c->db,c->argv[1]); dbDelete(c->db,c->argv[1]);
notifyKeyspaceEvent(NOTIFY_GENERIC,"del",c->argv[1],c->db->id); notifyKeyspaceEvent(REDIS_NOTIFY_GENERIC,"del",c->argv[1],c->db->id);
} }
addReplyLongLong(c,removed); addReplyLongLong(c,removed);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment