summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2018-01-22 12:09:35 +0100
committerantirez <antirez@gmail.com>2018-03-15 12:54:10 +0100
commit1ffb6723f52a1473385b7284ec0e53733083ddab (patch)
tree8e6f44cadbe3743293af70b82427f76f1958a5bc
parent6c0af37b6eb8d337b6c6204cf05b1ebf817f42fc (diff)
downloadredis-1ffb6723f52a1473385b7284ec0e53733083ddab.tar.gz
CG: fix XREADGROUP ">" special ID parsing due to missing "continue".
-rw-r--r--src/t_stream.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/t_stream.c b/src/t_stream.c
index 9835573d6..4d9c45548 100644
--- a/src/t_stream.c
+++ b/src/t_stream.c
@@ -1075,6 +1075,7 @@ void xreadCommand(client *c) {
goto cleanup;
}
ids[id_idx] = group->last_id;
+ continue;
}
if (streamParseIDOrReply(c,c->argv[i],ids+id_idx,0) != C_OK)
goto cleanup;