mirror of
https://github.com/fluencelabs/redis
synced 2025-06-13 09:11:20 +00:00
RENAME can unblock XREADGROUP
Other changes: Support stream in serverLogObjectDebugInfo
This commit is contained in:
3
src/db.c
3
src/db.c
@ -182,7 +182,8 @@ void dbAdd(redisDb *db, robj *key, robj *val) {
|
||||
|
||||
serverAssertWithInfo(NULL,key,retval == DICT_OK);
|
||||
if (val->type == OBJ_LIST ||
|
||||
val->type == OBJ_ZSET)
|
||||
val->type == OBJ_ZSET ||
|
||||
val->type == OBJ_STREAM)
|
||||
signalKeyAsReady(db, key);
|
||||
if (server.cluster_enabled) slotToKeyAdd(key);
|
||||
}
|
||||
|
Reference in New Issue
Block a user