From 28d36e3aa39f074a0c24707f16a5711b2d92a207 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;