Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
1ffb6723
Commit
1ffb6723
authored
Jan 22, 2018
by
antirez
Browse files
CG: fix XREADGROUP ">" special ID parsing due to missing "continue".
parent
6c0af37b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/t_stream.c
View file @
1ffb6723
...
@@ -1075,6 +1075,7 @@ void xreadCommand(client *c) {
...
@@ -1075,6 +1075,7 @@ void xreadCommand(client *c) {
goto cleanup;
goto cleanup;
}
}
ids[id_idx] = group->last_id;
ids[id_idx] = group->last_id;
continue;
}
}
if (streamParseIDOrReply(c,c->argv[i],ids+id_idx,0) != C_OK)
if (streamParseIDOrReply(c,c->argv[i],ids+id_idx,0) != C_OK)
goto cleanup;
goto cleanup;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment