Skip to content

Commit 891e75d

Browse files
committed
authors, lag
1 parent 54b16fb commit 891e75d

File tree

1 file changed

+3
-1
lines changed
  • src/main/java/org/springframework/data/redis/connection/stream

1 file changed

+3
-1
lines changed

src/main/java/org/springframework/data/redis/connection/stream/StreamInfo.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,8 @@ public Map<Object, Object> getLastEntry() {
219219
* {@literal Redis Stream}.
220220
*
221221
* @author Christoph Strobl
222+
* @author Mark Paluch
223+
* @author Krzysztof Kocel
222224
*/
223225
public static class XInfoGroups implements Streamable<XInfoGroup> {
224226

@@ -379,7 +381,7 @@ public Long entriesRead() {
379381
*/
380382
@Nullable
381383
public Long lag() {
382-
return get("entries-read", Long.class);
384+
return get("lag", Long.class);
383385
}
384386
}
385387

0 commit comments

Comments
 (0)