Afshin Salek
Afshin Salek
This is the error message that I'm seeing: Tagbar: Ctags doesn't seem to be Exuberant Ctags! BSD ctags will NOT WORK. Please download Exuberant Ctags from ctags.sourceforge.net and install it...
A bit more info: go-redis/v8 redis 6.0.15 everything runs on my laptop and the cluster topology is not changing while running the test.
Ok, I found the problem in this function: ``` func (cmd *baseCmd) stringArg(pos int) string { if pos < 0 || pos >= len(cmd.args) { return "" } s, _...
It's probably ok for `stringArg` to assume the argument is string because I guess that's what the function is intended for. But then the caller has made the wrong assumption...
Something like this (this is not my actual code so if you see any unrelated bug/typo ignore it): ``` type command struct { name string args [][]byte } func produce(ctx...
Thanks, as I mentioned I worked around this issue by casting the key to `string` in my code, but that's irrelevant because the code is not honoring the API by...