Fix SRP zCount/zInterStore methods executing synchronously when pipelining
DATAREDIS-142
This commit is contained in:
@@ -1354,7 +1354,7 @@ public class SrpConnection implements RedisConnection {
|
||||
|
||||
public Long zCount(byte[] key, double min, double max) {
|
||||
try {
|
||||
if (isQueueing()) {
|
||||
if (isPipelined()) {
|
||||
pipeline(pipeline.zcount(key, min, max));
|
||||
return null;
|
||||
}
|
||||
@@ -1395,7 +1395,7 @@ public class SrpConnection implements RedisConnection {
|
||||
}
|
||||
|
||||
try {
|
||||
if (isQueueing()) {
|
||||
if (isPipelined()) {
|
||||
pipeline(pipeline.zinterstore(args));
|
||||
return null;
|
||||
}
|
||||
|
||||
@@ -82,14 +82,6 @@ public class SrpConnectionPipelineIntegrationTests extends
|
||||
public void testGetConfig() {
|
||||
}
|
||||
|
||||
@Ignore("DATAREDIS-142 SRP zCount/zInterStore methods execute synchronously when pipelining")
|
||||
public void testZCount() {
|
||||
}
|
||||
|
||||
@Ignore("DATAREDIS-142 SRP zCount/zInterStore methods execute synchronously when pipelining")
|
||||
public void testZInterStore() {
|
||||
}
|
||||
|
||||
@Ignore("DATAREDIS-152 Syntax error on zRangeByScore and and zRangeByScoreWithScores when using offset and count")
|
||||
public void testZRangeByScoreOffsetCount() {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user