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
Start a ioredis client with no options given and subscribe to a channel. When we run 'PUBSUB CHANNEL' in redis-cli, the subscription should show
Kill the redis process and start it again. Now 'PUBSUB CHANNEL' shows nothing.
After I looked a little bit at the code it seemed that when the client reconnects it checks the property prevCondition.subscriber to see if the client was in subscribe mode and to renew all subscriptions. However the value of this property is 'false', so the subscriptions are not renewed.
The text was updated successfully, but these errors were encountered:
Steps to reproduce:
After I looked a little bit at the code it seemed that when the client reconnects it checks the property prevCondition.subscriber to see if the client was in subscribe mode and to renew all subscriptions. However the value of this property is 'false', so the subscriptions are not renewed.
The text was updated successfully, but these errors were encountered: