Commit 89f6f6ab authored by antirez's avatar antirez
Browse files

setKey(): call the higher level wrapper setModifiedKey() instead of...

setKey(): call the higher level wrapper setModifiedKey() instead of touchWatchedKey() even if currently they are exactly the same.
parent 824ea017
...@@ -110,7 +110,7 @@ void setKey(redisDb *db, robj *key, robj *val) { ...@@ -110,7 +110,7 @@ void setKey(redisDb *db, robj *key, robj *val) {
} }
incrRefCount(val); incrRefCount(val);
removeExpire(db,key); removeExpire(db,key);
touchWatchedKey(db,key); signalModifiedKey(db,key);
} }
int dbExists(redisDb *db, robj *key) { int dbExists(redisDb *db, robj *key) {
......
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