From 185e0d9cd81435b32b62c39f131e2af6f6dcc92a Mon Sep 17 00:00:00 2001 From: antirez Date: Mon, 16 Jul 2018 12:25:22 +0200 Subject: Modify XINFO field from last-id to last-generated-id. Related to #5129. --- src/t_stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/t_stream.c b/src/t_stream.c index c152bd678..6dd1280ec 100644 --- a/src/t_stream.c +++ b/src/t_stream.c @@ -2301,7 +2301,7 @@ NULL addReplyLongLong(c,s->rax->numnodes); addReplyStatus(c,"groups"); addReplyLongLong(c,s->cgroups ? raxSize(s->cgroups) : 0); - addReplyStatus(c,"last-id"); + addReplyStatus(c,"last-generated-id"); addReplyStreamID(c,&s->last_id); /* To emit the first/last entry we us the streamReplyWithRange() -- cgit v1.2.1