You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Summary: Redis supports lowercase options, and we don't. This fix addresses the issue.
Test Plan:
Before the change:
127.0.0.1:6379> set a 1 ex 1
(error) ERR set: Unidentified argument ex found while parsing set command
127.0.0.1:6379> set a 1 EX 1
OK
127.0.0.1:6379>
After the change:
127.0.0.1:6379> set a 1 ex 1
OK
127.0.0.1:6379> set a 1 EX 1
OK
Reviewers: karthik, pritam.damania, sergei, amitanand
Reviewed By: amitanand
Subscribers: kannan, ybase
Differential Revision: https://phabricator.dev.yugabyte.com/D4292
Currently the server expects these options only in upper case. These should work in lower case as well.
The text was updated successfully, but these errors were encountered: