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
If you have only one subscription and then unsubscribe from it, Amp\Redis\RedisSubscriber will become to invalid state. Amp\Redis\RedisSubscription::unsubscribe internally calls Amp\Redis\RedisSubscriber::unloadEmitter which checks isIdle and disconnects but runnging flag stays true. So, if you want to get another subscription after it, Amp\Redis\RedisSubscriber::run won't be called (and it will not perform connect therefore) and 'Redis connection already closed' exception will be thrown.
The text was updated successfully, but these errors were encountered:
If you have only one subscription and then unsubscribe from it,
Amp\Redis\RedisSubscriber
will become to invalid state.Amp\Redis\RedisSubscription::unsubscribe
internally callsAmp\Redis\RedisSubscriber::unloadEmitter
which checks isIdle and disconnects butrunnging
flag stays true. So, if you want to get another subscription after it,Amp\Redis\RedisSubscriber::run
won't be called (and it will not perform connect therefore) and 'Redis connection already closed' exception will be thrown.The text was updated successfully, but these errors were encountered: