From 1ffb6723f52a1473385b7284ec0e53733083ddab Mon Sep 17 00:00:00 2001 From: antirez Date: Mon, 22 Jan 2018 12:09:35 +0100 Subject: [PATCH] CG: fix XREADGROUP ">" special ID parsing due to missing "continue". --- src/t_stream.c | 1 + 1 file changed, 1 insertion(+) 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;