You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However when I call the function XInfoStreamFull on the same stream through the API then Groups slice is nil
How to reproduce
Produce message to stream SX
Create consumer group GX to stream SX (I specifically used XGroupCreateMkStream with SX and start 0 client.XGroupCreateMkStream(ctx, streamKey, consumerGroup, "0").Err()
call the info full function client.XInfoStreamFull(ctx, streamKey, 0).Result()
Groups collection returns null
version used
Redis 7.0.4 (00000000/0) 64 bit
github.com/redis/go-redis/v9 v9.0.4
The text was updated successfully, but these errors were encountered:
Apologies @SoulPancake ,
the versions used are:
Redis 7.0.4 (00000000/0) 64 bit
github.com/redis/go-redis/v9 v9.0.4
Also updated in the issue.
I should also say that by updating the latest versions of both, the problem persists ( there are no groups in the collection which is nil, and also err is Redis.Nil
XInfoStreamFull returns err Redis.Nil
When I examine the data it returns in addition to the err, then I see that all the properties of the stream are there, besides the groups collection.
I will try to create a reproducible script a little bit later on today
Uh oh!
There was an error while loading. Please reload this page.
I have a stream with a registered consumer group.
I can see these details when I run redis-cli
However when I call the function

XInfoStreamFull
on the same stream through the API then Groups slice is nilHow to reproduce
client.XGroupCreateMkStream(ctx, streamKey, consumerGroup, "0").Err()
client.XInfoStreamFull(ctx, streamKey, 0).Result()
Groups collection returns null
version used
Redis 7.0.4 (00000000/0) 64 bit
github.com/redis/go-redis/v9 v9.0.4
The text was updated successfully, but these errors were encountered: