DonalEvans commented on a change in pull request #6489: URL: https://github.com/apache/geode/pull/6489#discussion_r639264954
########## File path: geode-apis-compatible-with-redis/src/main/java/org/apache/geode/redis/internal/executor/sortedset/ZAddExecutor.java ########## @@ -47,7 +48,7 @@ public RedisResponse executeCommand(Command command, ExecutionHandlerContext con return RedisResponse .integer(redisSortedSetCommands.zadd(command.getKey(), - commandElements.subList(optionsFoundCount + 2, commandElements.size()), + new ArrayList<>(commandElements.subList(optionsFoundCount + 2, commandElements.size())), Review comment: Looking at [the Concourse job](https://concourse.apachegeode-ci.info/builds/41851), it seems like `shouldDistributeDataAmongCluster_givenConcurrentlyAddingDifferentSets()` failed due to `java.io.NotSerializableException: java.util.ArrayList$SubList` -- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org