summaryrefslogtreecommitdiff
path: root/src/t_list.c
diff options
context:
space:
mode:
authorGuy Benoish <guy.benoish@redislabs.com>2019-03-14 12:11:16 +0100
committerGuy Benoish <guy.benoish@redislabs.com>2019-03-14 12:11:16 +0100
commitb2eb48df89d8513a359faa677146d3c36e6266ab (patch)
treefa8d69eb51feaadc9f598765f2d79190719d602b /src/t_list.c
parentd3cd2e9a4a6f6f1ed5c410f40ec6c3310d2b44b8 (diff)
downloadredis-b2eb48df89d8513a359faa677146d3c36e6266ab.tar.gz
Fix mismatching keyspace notification classes
Diffstat (limited to 'src/t_list.c')
-rw-r--r--src/t_list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/t_list.c b/src/t_list.c
index 451ffb4b5..45d2e3317 100644
--- a/src/t_list.c
+++ b/src/t_list.c
@@ -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) {