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
XINFO consumers should respond with an array, whether it's RESP2 or RESP3 (https://redis.io/commands/xinfo-consumers/), but when I call it I get a map back. If there is only 1 consumer, the map is empty ({}). If there are 2 consumers, then the key is the first consumer & the value is the 2nd consumer.
XINFO groups also behaves like this.
When I issue the command directly to redis-cli it works as expected. Is there perhaps a setting that I'm missing?
commander v0.8.1
redis v7
The text was updated successfully, but these errors were encountered:
Sorry, cannot reproduce.
But the data are returned directly as received from ioredis connection. So its probably a problem there handling the data parsing.... https://github.com/redis/ioredis/
ioredis driver is already at the latest version here.
XINFO consumers
should respond with an array, whether it's RESP2 or RESP3 (https://redis.io/commands/xinfo-consumers/), but when I call it I get a map back. If there is only 1 consumer, the map is empty ({}
). If there are 2 consumers, then the key is the first consumer & the value is the 2nd consumer.XINFO groups
also behaves like this.When I issue the command directly to redis-cli it works as expected. Is there perhaps a setting that I'm missing?
commander v0.8.1
redis v7
The text was updated successfully, but these errors were encountered: