RENAME can unblock XREADGROUP

Other changes:
Support stream in serverLogObjectDebugInfo
This commit is contained in:
Guy Benoish
2020-03-31 17:37:05 +03:00
parent 4379b8b411
commit 6c8221580c
3 changed files with 25 additions and 1 deletions

View File

@ -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);
}