DonalEvans commented on a change in pull request #6716:
URL: https://github.com/apache/geode/pull/6716#discussion_r677029427
##########
File path:
geode-apis-compatible-with-redis/src/main/java/org/apache/geode/redis/internal/executor/sortedset/AbstractSortedSetRangeOptions.java
##########
@@ -37,25 +39,32 @@
}
void parseLimitArguments(List<byte[]> commandElements, int commandIndex) {
- if (!equalsIgnoreCaseBytes(commandElements.get(commandIndex - 2), bLIMIT))
{
+ String element = bytesToString(commandElements.get(commandIndex));
+ if (!equalsIgnoreCaseBytes(commandElements.get(commandIndex), bLIMIT)) {
+ System.out.println("DONAL: throwing because " + element + " is not
LIMIT");
Review comment:
Thanks for spotting that. It's gone now.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]