csredis icon indicating copy to clipboard operation
csredis copied to clipboard

"Member 's-down-time' was not found." error

Open ardacetinkaya opened this issue 8 years ago • 3 comments

I have a strange issue with csredis' RedisSentinelManager(). I am adding sentinels as below

            var sentinel = new RedisSentinelManager();
            sentinel.Add("ttekhysred01", 20001);
            sentinel.Add("ttekhysred01", 20002);

            sentinel.Connected += (s, e) => sentinel.Call(x => x.Auth(password));
            sentinel.Connect("mymaster", 200);

When executing the code I get, "Member 's-down-time' was not found." error. Is there something with sentinel configuration or somehing else.

ardacetinkaya avatar Dec 29 '15 20:12 ardacetinkaya