We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
svolle opened DATAREDIS-1013 and commented
The RedisCommand class specifies SELECT command arguments validations as such:
RedisCommand
SELECT
SELECT(mode:"rw", minArgs:0, maxArgs:0), //
but in my understanding, minArgs and maxArgs value really should be 1 (the database index we want to select).
minArgs
maxArgs
As such, it is impossible to issue a SELECT command in transactional mode as the validation of the command will always fail
Affects: 2.1.9 (Lovelace SR9)
Referenced from: pull request #468
Backported to: 2.1.10 (Lovelace SR10)
The text was updated successfully, but these errors were encountered:
Mark Paluch commented
Good catch. Do you want to submit a pull request to fix the issue?
Sorry, something went wrong.
svolle commented
Hello Mark Paluch. I created the following pull request for the issue:
#468
mp911de
No branches or pull requests
svolle opened DATAREDIS-1013 and commented
The
RedisCommand
class specifiesSELECT
command arguments validations as such:but in my understanding,
minArgs
andmaxArgs
value really should be 1 (the database index we want to select).As such, it is impossible to issue a
SELECT
command in transactional mode as the validation of the command will always failAffects: 2.1.9 (Lovelace SR9)
Referenced from: pull request #468
Backported to: 2.1.10 (Lovelace SR10)
The text was updated successfully, but these errors were encountered: