Fix mismatching keyspace notification classes

This commit is contained in:
Guy Benoish
2019-03-14 12:11:16 +01:00
parent d3cd2e9a4a
commit b2eb48df89
2 changed files with 2 additions and 2 deletions

View File

@ -520,7 +520,7 @@ void lremCommand(client *c) {
if (removed) {
signalModifiedKey(c->db,c->argv[1]);
notifyKeyspaceEvent(NOTIFY_GENERIC,"lrem",c->argv[1],c->db->id);
notifyKeyspaceEvent(NOTIFY_LIST,"lrem",c->argv[1],c->db->id);
}
if (listTypeLength(subject) == 0) {