Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
d695f3e8
Commit
d695f3e8
authored
Feb 05, 2016
by
antirez
Browse files
Fix NOTIFY macro names after cherry pick of fix.
parent
593cf598
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/t_list.c
View file @
d695f3e8
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment