mirror of
https://github.com/fluencelabs/redis
synced 2025-05-16 12:31:20 +00:00
Streams: ID of xclaim command starts from the sixth argument.
This commit is contained in:
parent
a3f2437bdd
commit
b59f04a099
@ -2015,7 +2015,7 @@ void xclaimCommand(client *c) {
|
|||||||
* the client successfully claimed some message, so it should be
|
* the client successfully claimed some message, so it should be
|
||||||
* executed in a "all or nothing" fashion. */
|
* executed in a "all or nothing" fashion. */
|
||||||
int j;
|
int j;
|
||||||
for (j = 4; j < c->argc; j++) {
|
for (j = 5; j < c->argc; j++) {
|
||||||
streamID id;
|
streamID id;
|
||||||
if (streamParseStrictIDOrReply(NULL,c->argv[j],&id,0) != C_OK) break;
|
if (streamParseStrictIDOrReply(NULL,c->argv[j],&id,0) != C_OK) break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user