AlCapown

Results 9 comments of AlCapown

I'm pretty confident it is ACL related though. We did test with just `+@all` and the issue went away. But for obvious security reasons, we don't want to set our...

I should clarify that we never actually took the master node offline, we just promoted one of the slaves to be the new master. We had to do this was...

We are on the latest stable release of Redis server. 6.2.6

Here is how you repro. Using this simple console app and the following ACL configured in the .conf file (I was on .NET 6 and StackExchange.Redis version 2.2.88) ``` using...

The error will be a little different in my example but its still trying to do a SET command against a replica. StackExchange.Redis.RedisConnectionException: InternalFailure on SET TestKey ---> StackExchange.Redis.RedisCommandException: Command...

You know what, I take back what I said about this being ACL related... Ran my tests again with full access and I can still reproduce the errors. The behavior...

Do you have an estimate on the timeframe of when 2.5.x might be released?

@NickCraver I pulled down the latest prerelease version of `2.5.24-prerelease` and I can still reproduce the same error. ``` StackExchange.Redis.RedisConnectionException: InternalFailure on SET user:TestKey ---> StackExchange.Redis.RedisCommandException: Command cannot be issued...

@NickCraver Not sure if the full details is going to revial much for you. Its still that example program I listed out above that writes a string in a loop....