-
Type:
Bug
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 2.1.9 (Lovelace SR9)
-
Fix Version/s: 2.1.10 (Lovelace SR10), 2.2 RC2 (Moore)
-
Component/s: Core
-
Labels:None
-
Pull Request URL:
-
Sprint:Moore RC2
The RedisCommand class specifies SELECT command arguments validations as such:
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).
As such, it is impossible to issue a SELECT command in transactional mode as the validation of the command will always fail.