mirror of
https://github.com/redis/redis.git
synced 2026-04-21 03:01:35 -04:00
CG: fix CG RDB loading not found conditional.
This commit is contained in:
@@ -1674,7 +1674,7 @@ robj *rdbLoadObject(int rdbtype, rio *rdb) {
|
||||
unsigned char rawid[sizeof(streamID)];
|
||||
rdbLoadRaw(rdb,rawid,sizeof(rawid));
|
||||
streamNACK *nack = raxFind(cgroup->pel,rawid,sizeof(rawid));
|
||||
if (nack == NULL)
|
||||
if (nack == raxNotFound)
|
||||
rdbExitReportCorruptRDB("Consumer entry not found in "
|
||||
"group global PEL");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user