From 42b977a6acb6461b2a733c53b4635bf51b40ae7b Mon Sep 17 00:00:00 2001 From: antirez Date: Mon, 16 Jul 2018 12:25:22 +0200 Subject: [PATCH] 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 c152bd6786aa..6dd1280ecb67 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()