mirror of
https://github.com/fluencelabs/redis
synced 2025-06-24 06:21:32 +00:00
Avoid changing setKey() API after #6679 fix.
This commit is contained in:
@ -754,7 +754,7 @@ void bitopCommand(client *c) {
|
||||
/* Store the computed value into the target key */
|
||||
if (maxlen) {
|
||||
o = createObject(OBJ_STRING,res);
|
||||
setKey(c->db,targetkey,o,0);
|
||||
setKey(c->db,targetkey,o);
|
||||
notifyKeyspaceEvent(NOTIFY_STRING,"set",targetkey,c->db->id);
|
||||
decrRefCount(o);
|
||||
} else if (dbDelete(c->db,targetkey)) {
|
||||
|
Reference in New Issue
Block a user