mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 08:38:27 -05:00
XREADGROUP should propagate XCALIM/SETID in MULTI/EXEC
Use built-in alsoPropagate mechanism that wraps commands in MULTI/EXEC before sending them to replica/AOF
This commit is contained in:
parent
df45fed050
commit
a6c7e61e61
@ -848,7 +848,7 @@ void streamPropagateXCLAIM(client *c, robj *key, streamCG *group, robj *groupnam
|
|||||||
argv[11] = createStringObject("JUSTID",6);
|
argv[11] = createStringObject("JUSTID",6);
|
||||||
argv[12] = createStringObject("LASTID",6);
|
argv[12] = createStringObject("LASTID",6);
|
||||||
argv[13] = createObjectFromStreamID(&group->last_id);
|
argv[13] = createObjectFromStreamID(&group->last_id);
|
||||||
propagate(server.xclaimCommand,c->db->id,argv,14,PROPAGATE_AOF|PROPAGATE_REPL);
|
alsoPropagate(server.xclaimCommand,c->db->id,argv,14,PROPAGATE_AOF|PROPAGATE_REPL);
|
||||||
decrRefCount(argv[0]);
|
decrRefCount(argv[0]);
|
||||||
decrRefCount(argv[3]);
|
decrRefCount(argv[3]);
|
||||||
decrRefCount(argv[4]);
|
decrRefCount(argv[4]);
|
||||||
@ -875,7 +875,7 @@ void streamPropagateGroupID(client *c, robj *key, streamCG *group, robj *groupna
|
|||||||
argv[2] = key;
|
argv[2] = key;
|
||||||
argv[3] = groupname;
|
argv[3] = groupname;
|
||||||
argv[4] = createObjectFromStreamID(&group->last_id);
|
argv[4] = createObjectFromStreamID(&group->last_id);
|
||||||
propagate(server.xgroupCommand,c->db->id,argv,5,PROPAGATE_AOF|PROPAGATE_REPL);
|
alsoPropagate(server.xgroupCommand,c->db->id,argv,5,PROPAGATE_AOF|PROPAGATE_REPL);
|
||||||
decrRefCount(argv[0]);
|
decrRefCount(argv[0]);
|
||||||
decrRefCount(argv[1]);
|
decrRefCount(argv[1]);
|
||||||
decrRefCount(argv[4]);
|
decrRefCount(argv[4]);
|
||||||
|
Loading…
Reference in New Issue
Block a user