Fixing Sharded Pipeline as the zrange should be built with a STRING_ZSET

This commit is contained in:
Ben Smith
2012-03-23 17:02:16 +00:00
parent 72ca494362
commit df3c57940a

View File

@@ -351,7 +351,7 @@ public class ShardedJedisPipeline extends Queable {
Client c = getClient(key);
c.zrange(key, start, end);
results.add(new FutureResult(c));
return getResponse(BuilderFactory.STRING_SET);
return getResponse(BuilderFactory.STRING_ZSET);
}
public Response<Long> zrem(String key, String member) {