Closed as not planned
Description
Looking for thoughts here -- it's possible I'm mis-using a portion of the library. I've got a go program that ties two different redis instances together via pub/sub:
- Redis A, sentinels, psubscribe for published events
- Redis B, AWS elasticache, publish transformed events
.. the other day we had a sentinel failover in Redis A; the event count dropped to 0, no events were being published to B, cue disaster music. The particular redis instance we were connected to never died, but no events were being published to it after sentinel failover.
The library may well -- probably did -- receive the +switch-master notification, but that never bubbled up to me, and the existing connection was happy.
How would you handle this case? Is there an intention to bubble sentinel events up to clients in some way?